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を追加したいのですが、どうすればよいですか?