各テーブルセルにUITableView
カスタムを使用してを作成しようとしています。UIButton
私はこのように実装しました。
@implementation CouponDetailsCustomTableViewCell
...............
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
[self setBackgroundColor:[UIColor whiteColor]];
CGRect frame = self.contentView.frame;
self.radioButton = [UIButton buttonWithType:UIButtonTypeCustom];
[self.radioButton setImage:[UIImage imageNamed:@"radio_blank.png"] forState:UIControlStateNormal];
[self.radioButton setImage:[UIImage imageNamed:@"radio_selected"] forState:UIControlStateSelected];
[self.radioButton setFrame:CGRectMake(16, 10, 29, 29)];
[self.radioButton addTarget:nil action:@selector(radioButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:radioButton];
}
@end
およびUITableViewデリゲートとして......
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *COUPON_CELL_ID = @"CouponCell" ;
CouponDetailsCustomTableViewCell * couponCell = (CouponDetailsCustomTableViewCell *) [tableView dequeueReusableCellWithIdentifier:COUPON_CELL_ID];
if (couponCell == nil) {
couponCell = [[[CouponDetailsCustomTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:COUPON_CELL_ID] autorelease];
couponCell.selectionStyle = UITableViewCellSelectionStyleNone;
}
[couponCell.radioButton setSelected:NO];
return couponCell;
}
そしてradioButtonPressedメソッドは
-(void)radioButtonPressed:(id) sender
{
[sender setSelected:YES];
}
UIButton
プログラムを実行すると、すべてのテーブル行にカスタムが表示されます。ボタンをクリックすると、選択されます(が表示されますradio_selected.png
)。
テーブルを下にスクロールすると問題が発生します(ウィンドウにテーブルの4行のみが表示されています)。もう一度上にスクロールすると、クリックしたボタンが表示されますradio_blank.png
。
私はiPhone開発の初心者です。なぜこれが起こっているのか分かりません。私が推測できるほとんどのことは、ボタンのプロパティが変更されていることです setSelected:NO
。
誰かが私にこの問題を解決するための提案をしてください。
ありがとうございました。