我曾经UITableviewcellEditingstyleDelete
显示按钮供用户单击以显示删除按钮(这与您在电子邮件应用程序上看到的方式相同,当用户单击编辑然后单击按钮以显示删除按钮时)。它在 ios6 中运行良好,但是当我在具有 ios 7 的设备上构建我的应用程序时,删除按钮消失了,但是当您点击删除按钮的区域时,它也可以删除。问题是用户看不到删除按钮(操作系统提供的红色按钮)。我的代码是:
- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
// Detemine if it's in editing mode
if (self.editing)
{
return UITableViewCellEditingStyleDelete;
}
return UITableViewCellEditingStyleNone;
}
请帮我找到解决方案,我对iOS7环境了解不多。谢谢!