我在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。我应该这样做吗?
答案 0 :(得分:1)
在按钮上添加tag
,您可以按如下方式访问该按钮:
// initWithStyle
rangeBtn.tag = 1;
// cellForRowAtIndexPath
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: @"cell"];
UIButton *cellButton = (UIButton *)[cell viewWithTag: 1];
// add target to the button
[cellButton addTarget: self action: @selector(buttonPressed:) forControlEvent: UIControlEventTouchUpInside];
}
答案 1 :(得分:0)
将rangeBtn.tag设置为某个值(例如100)。
然后在cellForRowAtIndexPath中使用以下方法获取对该按钮的引用: btn = [cell viewWithTag:100]
现在您可以设置该按钮的目标。