1

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

4

2 に答える 2

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];
}
于 2012-10-31T04:04:34.513 に答える
0

rangeBtn.tagをある値(例:100)に設定します。

次に、cellForRowAtIndexPathで、次を使用してボタンへの参照を取得します。btn = [cell viewWithTag:100]

これで、そのボタンのターゲットを設定できます。

于 2012-10-31T04:07:12.567 に答える