HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了UITableViewCellAccessoryCheckmark涵盖iOS 7上的单元格分隔符大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在iOS 7上使用此代码会导致分隔符视图被覆盖或缩短:
cell.accessoryType = UITableViewCellAccessorycheckmark;

如何修复分隔符视图?

我正在使用原型单元格,但我不是它们的子类.

[编辑]

以下是cellForRowATindexPath的相关代码

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];

if (indexPath.section == kDefaultViewSection){
    NSArray *defaultViewNames = @[LQSetTingsSentenceView,LQSetTingsFullTextView,LQSetTingsFlashcardsView];
    NSString *preferredViewName = [LQSetTings valueForKey:LQSetTingsPreferredLessonView];
    if ([defaultViewNames[indexPath.row] isEqualToString:preferredViewName]){
        cell.accessoryType = UITableViewCellAccessorycheckmark;
    } else {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }
}



- (void)tableView:(UITableView *)tableView didSELEctRowATindexPath:(NSIndexPath *)indexPath{
    [tableView deSELEctRowATindexPath:indexPath animated:YES];
    if (indexPath.section != kDefaultViewSection){
        return;
    }

    // Just turn all checks off for a minute
    for (int x=0; x<3; x++) {
        NSIndexPath *ip = [NSIndexPath indexPathForRow:x inSection:kDefaultViewSection];
        UITableViewCell *cell = [tableView cellForRowATindexPath:ip];
        cell.accessoryType = UITableViewCellAccessoryNone;
    }

    UITableViewCell *cell = [tableView cellForRowATindexPath:indexPath];
    cell.accessoryType = UITableViewCellAccessorycheckmark;    
}

解决方法

在我的情况下,我已经禁用了系统提供的分隔线,并在单元格的xib中添加了我的自定义分隔线.有时正确的选中标记覆盖了底部分隔线的部分.我为解决问题所做的是我已经更改了尾随约束到单元格而不是contentView. [不是超级视图]

大佬总结

以上是大佬教程为你收集整理的UITableViewCellAccessoryCheckmark涵盖iOS 7上的单元格分隔符全部内容,希望文章能够帮你解决UITableViewCellAccessoryCheckmark涵盖iOS 7上的单元格分隔符所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。