但是,对于某些细胞,我不希望左侧的圆圈出现.我怎么做?我在编辑过程中尝试过cell.selectionStyle = UItableVIEwCellSelectionStyleNone,但是没有用.
任何提示?
解决方法 为了禁止多个选择中的某些行,您应该使用tableVIEw:shouldindentWhileEditingRowAtIndexPath:与cell.selectionStyle = UItableVIEwCellSelectionStyleNone混合使用.以下是我的代码示例:
- (BOol)tableVIEw:(UItableVIEw *)tableVIEw shouldindentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath*)indexPath { if (indexPath.row < 4) { return YES; } else { return NO; }}- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath { // (...) configure cell if (indexPath.row < 4) { cell.selectionStyle = UItableVIEwCellSelectionStyleBlue; } else { cell.selectionStyle = UItableVIEwCellSelectionStyleNone; }}总结
以上是内存溢出为你收集整理的ios – UITableView的allowMultipleSelectionDuringEditing – 不显示某些单元格的编辑圈全部内容,希望文章能够帮你解决ios – UITableView的allowMultipleSelectionDuringEditing – 不显示某些单元格的编辑圈所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)