Can a standard accessory view be in a different position within a uitableviewcell?
Posted
by cannyboy
on Stack Overflow
See other posts from Stack Overflow
or by cannyboy
Published on 2010-05-20T16:57:48Z
Indexed on
2010/05/20
17:00 UTC
Read the original article
Hit count: 280
I want my accessory to be in a slightly different place than normal. Is it possible? This code has no effect:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.accessoryView.frame = CGRectMake(5.0, 5.0, 5.0, 5.0);
© Stack Overflow or respective owner