equal
deleted
inserted
replaced
20 #import <UIKit/UIKit.h> |
20 #import <UIKit/UIKit.h> |
21 |
21 |
22 |
22 |
23 @protocol HoldTableViewCellDelegate <NSObject> |
23 @protocol HoldTableViewCellDelegate <NSObject> |
24 |
24 |
25 -(void) holdAction:(NSString *)content onTable:(UITableView *)aTableView; |
25 - (void)holdAction:(NSString *)content onTable:(UITableView *)aTableView; |
26 |
26 |
27 @end |
27 @end |
28 |
28 |
29 @interface HoldTableViewCell : UITableViewCell { |
29 @interface HoldTableViewCell : UITableViewCell { |
30 id<HoldTableViewCellDelegate> delegate; |
30 id<HoldTableViewCellDelegate> __weak delegate; |
31 NSTimeInterval time; |
31 NSTimeInterval time; |
32 } |
32 } |
33 |
33 |
34 @property (nonatomic,assign) id<HoldTableViewCellDelegate> delegate; |
34 @property (nonatomic, weak) id<HoldTableViewCellDelegate> delegate; |
35 |
35 |
36 -(void) holdAction; |
36 - (void)holdAction; |
37 |
37 |
38 @end |
38 @end |