How do I get a Blue background color for a selected cell in a TTTableViewController?
I have the most simple version a TTTableViewController, but can't get a blue background on a tappe开发者_开发技巧d cell. How do I do that?
The following doesn't work:
- (UITableViewCellSelectionStyle)tableSelectionStyle {
return UITableViewCellSelectionStyleBlue;
}
P.s. Why is it so hard to find any documentation on three20 stuff. It's just getting rediculous now. An API is NOT documentation. It's just a list of the nuts & bolts.
Found it !!!
I needed to set the URL of my tableItem to @"" instead of nil.
精彩评论