uitableviewcell disclosureindicator accessoryview alignment

时间:2011-05-13 08:38:07

标签: iphone cocoa-touch uitableview accessoryview

是否可以在UITableViewCell上更改配件视图位置/对齐方式(默认情况下它居中对齐)?

1 个答案:

答案 0 :(得分:2)

不,您不能使用任何Apple提供的API,但您可以创建自己的视图并将其放在单元格的右侧。

您只需在创建该对象时设置该uiview对象的框架,或者通过frame属性设置该框架,就像这样

UIView *viewObject = {[UIView alloc] initWithFrame:CGRectMake(280, 10, 25, 25)];

viewObject.frame = CGRectMake(280, 10, 25, 25)