0

我正在尝试开发一个 UITableView ,它具有 sectionIndexTitles 并且哪些单元格具有辅助按钮。

问题是索引标题的滚动条减小了单元格的宽度,因此附件按钮处于丑陋的位置......

是否可以将按钮稍微向左移动以使其位于单元格内?

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier = @"cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
        cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        cell.textLabel.text = @"text";
    }

    return cell;
}

如您所见,我不操纵细胞或类似的东西。

在这里你可以看到结果:

http://i.stack.imgur.com/3AB89.jpg

4

1 回答 1

1

有一种方法可以移动默认的附件视图,但它非常 hacky。因此,当新的 sdk 到达时,它可能会停止工作。

使用风险自负(此代码段将任何附件视图向左移动 8 个像素,将其插入到所需的 uitableviewcell 子类的 -(void)layoutSubviews 方法中):

if (self.accessoryView) {
    r = self.accessoryView.frame;
    r.origin.x -= 8;
    self.accessoryView.frame = r;
} else {
    UIView* defaultAccessoryView = nil;
    for (UIView* subview in self.subviews) {
        if (subview != self.textLabel && 
            subview != self.detailTextLabel && 
            subview != self.backgroundView && 
            subview != self.contentView &&
            subview != self.selectedBackgroundView &&
            subview != self.imageView) {
            defaultAccessoryView = subview;
            break;
        }
    }
    r = defaultAccessoryView.frame;
    r.origin.x -= 8;
    defaultAccessoryView.frame = r;
}
于 2012-06-13T17:11:02.040 回答