| 123456789101112131415161718192021222324 |
- //
- // ResultCell.h
- // Apex Mobile
- //
- // Created by Jack on 2018/2/14.
- // Copyright © 2018年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class ResultCell;
- @protocol ResultCellTouchDelegate <NSObject>
- @optional
- - (void)touchedCell:(ResultCell *)cell withForce:(float)force;
- @end
- @interface ResultCell : UITableViewCell
- @property (nonatomic,weak) id<ResultCellTouchDelegate> touchDelegate;
- @property (nonatomic,assign) BOOL handlingTouch;
- @end
|