我想用自己的按钮替换UITableView编辑样式中的默认删除按钮。怎么做?
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:
(NSIndexPath *)indexPath
{
return @"title!";
}
这个编辑按钮的标题。更改按钮颜色的内容.. 任何人都可以帮助我
答案 0 :(得分:0)
我们可以自定义UITableView.But中的默认删除按钮,根据IOS人机界面指南,如果您尝试更改该应用,您的应用可能会被苹果拒绝。 您可以参考http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/Introduction/Introduction.html
答案 1 :(得分:0)