关于OC挂协议方法

在h文件中

#import 
@protocol CustomTableViewCellDelegate 
//协议
@optional
- (void)tableViewCell:(UITableViewCell*)cell Clicked:(NSIndexPath*)indexPath; 
//协议方法
@end

@interface CustomTableViewCell : UITableViewCell
//弱引用
@property (nonatomic,weak)id  delegate;
@end

你可能感兴趣的:(关于OC挂协议方法)