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