我有 CustomCell 我希望当我单击 CustomCell 中的按钮时它应该发出警报。那么如何访问那个 CustomCell 的方法
@interface CustomCell : UITableViewCell {
IBOutlet UIImageView *imageViewCell;
IBOutlet UILabel *theTitle;
IBOutlet UIButton*imageButton;
}
@property(nonatomic,retain) IBOutlet UIButton*imageButton;
@property(nonatomic,retain) UIImageView *imageViewCell;
@property(nonatomic,retain) UILabel *theTitle;
-(IBAction)imageButtonAction;
@end
@implementation CustomCell
@synthesize imageViewCell;
@synthesize theTitle;
-(IBAction)imageButtonAction{
}
而不是在这里调用这个方法,我希望这个方法应该在我使用 CustomCell 的类中唤起任何想法如何做到这一点。