我正在尝试开发一个 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;
}
如您所见,我不操纵细胞或类似的东西。
在这里你可以看到结果: