diff -r 2c06b1120749 -r 00215a7ec5f5 project_files/HedgewarsMobile/Classes/HoldTableViewCell.h --- a/project_files/HedgewarsMobile/Classes/HoldTableViewCell.h Fri Dec 29 22:37:31 2017 +0100 +++ b/project_files/HedgewarsMobile/Classes/HoldTableViewCell.h Sat Dec 30 01:22:11 2017 +0100 @@ -22,17 +22,17 @@ @protocol HoldTableViewCellDelegate --(void) holdAction:(NSString *)content onTable:(UITableView *)aTableView; +- (void)holdAction:(NSString *)content onTable:(UITableView *)aTableView; @end @interface HoldTableViewCell : UITableViewCell { - id delegate; + id __weak delegate; NSTimeInterval time; } -@property (nonatomic,assign) id delegate; +@property (nonatomic, weak) id delegate; --(void) holdAction; +- (void)holdAction; @end