我在 uitableviewcell 中创建了一个按钮
@interface MyMusicLibraryCell : UITableViewCell
{
IBOutlet UIButton * rangeBtn ;
}
在 .m 文件中
@synthesize rangeBtn;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
rangeBtn = [[UIButton alloc] init];
rangeBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[rangeBtn setBackgroundImage:[UIImage imageNamed:@"fav_4.png"] forState:UIControlStateNormal];
rangeBtn.frame = CGRectMake(260.0f, 10.0f, 20.0f, 20.0f);
[self addSubview:rangeBtn];
}
return self;
}
我想使用 rangeBtn 并在 cellForRowAtIndexPath 中添加一个 addTarget。我应该怎么做?