ios - iOS7 中奇怪的 UITableViewCell 选择

标签 ios uitableview ios7

我正在 iOS7 中开发一个应用程序。我有一个 TableViewController,它的样式是分组的。 我成功实现了this解决方案,可以按照我想要的方式获得 TableView 的曲线。

编辑:- 我没有为单元格使用任何自定义类。我仅从 Nib 添加了 TableView 并默认使用单元格。

实现的代码如下:-

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([cell respondsToSelector:@selector(tintColor)]) {
        if (tableView == self.tblviwSample) {
            CGFloat cornerRadius = 5.f;
            cell.backgroundColor = UIColor.clearColor;
            CAShapeLayer *layer = [[CAShapeLayer alloc] init];
            CGMutablePathRef pathRef = CGPathCreateMutable();
            CGRect bounds = CGRectInset(cell.bounds, 10, 0);
            BOOL addLine = NO;
            if (indexPath.row == 0 && indexPath.row == [tableView numberOfRowsInSection:indexPath.section]-1) {
                CGPathAddRoundedRect(pathRef, nil, bounds, cornerRadius, cornerRadius);
            } else if (indexPath.row == 0) {
                CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds), CGRectGetMidX(bounds), CGRectGetMinY(bounds), cornerRadius);
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), cornerRadius);
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds));
                addLine = YES;
            } else if (indexPath.row == [tableView numberOfRowsInSection:indexPath.section]-1) {
                CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds));
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds), CGRectGetMidX(bounds), CGRectGetMaxY(bounds), cornerRadius);
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), cornerRadius);
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds));
            } else {
                CGPathAddRect(pathRef, nil, bounds);
                addLine = YES;
            }
            layer.path = pathRef;
            CFRelease(pathRef);
            layer.fillColor = [UIColor colorWithWhite:1.f alpha:0.8f].CGColor;

            if (addLine == YES) {
                CALayer *lineLayer = [[CALayer alloc] init];
                CGFloat lineHeight = (1.f / [UIScreen mainScreen].scale);
                lineLayer.frame = CGRectMake(CGRectGetMinX(bounds)+10, bounds.size.height-lineHeight, bounds.size.width-10, lineHeight);
                lineLayer.backgroundColor = tableView.separatorColor.CGColor;
                [layer addSublayer:lineLayer];
            }
            UIView *testView = [[UIView alloc] initWithFrame:bounds];
            [testView.layer insertSublayer:layer atIndex:0];
            testView.backgroundColor = UIColor.clearColor;
            cell.backgroundView = testView;
        }
    }
}

此代码的效果 - See this - before selection

但是遇到一个问题,当我选择一个单元格时,它看起来很奇怪,例如 this

我希望该部分以正确的方式进行。任何想法将不胜感激。

最佳答案

我会让表格 View 更薄(减少两侧的宽度),然后实现你的外观,以便该线不会在表格 View 边缘之前结束,而是一直延伸到表格 View 的一侧。

换句话说 - 减少表格 View 宽度以匹配当前行宽度,并将行保留为现在的出价(然后它将与表格 View 一样宽)。您的选择现在也将不再那么广泛。

或者,在选择后,您可以修改表格 View 单元格,以便模仿某些自定义选择。这可能是从改变单元格颜色到用动画翻转它。

关于ios - iOS7 中奇怪的 UITableViewCell 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21328801/

相关文章:

ios - 当应用程序进入前台时,如何重新启动基于 block 的动画?

ios - 如何使用表头 View 中的 exclusionPaths 正确调整 textview 的大小

authentication - AFNetworking 2.0 身份验证 Kerberos 和 NTLM

ios - 任何想法如何解决这个奇怪的 uitableview 分隔线格式问题

iphone - 是否可以使用 distcc 构建 iPhone 设备版本?

ios - 使用可读内容指南和灵活的缩略图高度不明确

ios - 当用户滚动到最后一个 tableViewCell 时执行操作

ios - UITableView 不重新加载数据或调用 cellForRowAtIndexPath

iphone - 带有可点击、可排序标题的 UITableView

ios - 如何设置 SKScene 的背景图片?