ResultCell.h 495 B

123456789101112131415161718192021222324
  1. //
  2. // ResultCell.h
  3. // Apex Mobile
  4. //
  5. // Created by Jack on 2018/2/14.
  6. // Copyright © 2018年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ResultCell;
  10. @protocol ResultCellTouchDelegate <NSObject>
  11. @optional
  12. - (void)touchedCell:(ResultCell *)cell withForce:(float)force;
  13. @end
  14. @interface ResultCell : UITableViewCell
  15. @property (nonatomic,weak) id<ResultCellTouchDelegate> touchDelegate;
  16. @property (nonatomic,strong) UIColor *touchColor;
  17. @end