I would like to use a custom version of the standard disclosure accessory image in my UITableView. How can I do this? I\'m hoping that sub-classing UITableViewCell is not ne
You'll need to create a custom view and assign it to the accessoryView property of the UITableViewCell object. Something like:
accessoryView
UITableViewCell
myCell.accessoryView = [[ UIImageView alloc ] initWithImage:[UIImage imageNamed:@"Something" ]];