#pragma mark 自定义表视图滑动时delete按钮内容
- (NSString *) tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"下载";
}
本文共 218 字,大约阅读时间需要 1 分钟。
#pragma mark 自定义表视图滑动时delete按钮内容
- (NSString *) tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"下载";
}
转载于:https://blog.51cto.com/8434381/1727848