我有一个CustomTableView单元格,并且它有一个附件视图。如何动态更改附件视图的图像?

最佳答案

使用您的自定义按钮来查看附件。

//将铅笔图标贴在附件视图上

UIButton* pencil = [UIButton buttonWithType:UIButtonTypeCustom];
[pencil setImage:[UIImage imageNamed:@"icon-pencil.gif"] forState:UIControlStateNormal];
pencil.frame = CGRectMake(0, 0, 15, 15);
pencil.userInteractionEnabled = YES;
[pencil addTarget:self action:@selector(didTapEditButton:)      forControlEvents:UIControlEventTouchDown];
cell.accessoryView = pencil;

关于objective-c - 动态更改UITableViewCell的附件 View 图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13235768/

10-09 12:27