0

UIButtonTypeDetailDisclose の画像をデフォルトのものからより興味深いものに変更することは可能ですか? ただし、1 つのタイプの uibutton ではなく、ボタンを求めていることに注意してください。

4

1 に答える 1

1

セルのaccessoryViewを変更する必要があります。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath

// code for initializing the cell..

UIImage *image = [UIImage imageNamed:@"interestingImage.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
CGRect frame = CGRectMake(44.0, 44.0, image.size.width, image.size.height);
button.frame = frame;
[button setBackgroundImage:image forState:UIControlStateNormal];

[button addTarget:self action:@selector(accessoryButtonTapped:)  forControlEvents:UIControlEventTouchUpInside];
button.backgroundColor = [UIColor clearColor];
cell.accessoryView = button;

return cell;
}
于 2013-05-14T13:39:44.343 に答える