0

我想将减号图像的位置从单元格的左侧更改为中间。在这里尝试阅读:http: //developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/ManageInsertDeleteRow/ManageInsertDeleteRow.html但找不到简单的方法来做到这一点。

谢谢

4

1 回答 1

1

在您的自定义单元格 layoutSubviews 方法中使用:

if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellEditControl"]) {
        CGRect newFrame = subview.frame;
        //Use your desired x value
        newFrame.origin.x = 280;
        subview.frame = newFrame;    
}

如此处所示https://stackoverflow.com/a/8512461/1747635

于 2013-03-06T19:30:03.203 回答