如何在UITableViewCell中获得此效果?图标位置位于标签的右侧。
此外,这个洗牌图标是我应该使用的标准吗?我有一个类似的应用程序,用户可以通过单词随机播放,如果按下这个单词,每个单词将以随机顺序播放。
答案 0 :(得分:3)
您可以使用UIKit Artwork Extractor [1]提取所有Apple标准图标并在您的应用程序中使用它们。 Apple对此没有任何问题(到目前为止)。
[1] https://github.com/0xced/UIKit-Artwork-Extractor/blob/master/README.md
答案 1 :(得分:0)
(假设你点击那个图标来洗牌) 它就像添加一个带有该imageview作为背景的自定义按钮一样简单,作为单元格的子视图。但是相应地设置框架,如
UIButton *shuffbutton=[UIButton buttonWithType:UIButtonTypeCustom];
shuffbutton.frame=CGRectMake(100,5, 30, 30);
[shuffbutton setBackgroundImage:[UIImage imageNamed:@"shuffle_icon.png"] forState:UIControlStateNormal];
[shuffbutton addTarget:self action:@selector(shuffle:) forControlEvents:UIControlEventTouchUpInside];
[cell addSubview:shuffbutton];