Search Results

0
votes

iPhone SDK 3.0 in-app email - changing navigation bar tint color

Yes it is possible. Just add a objective-c category in the UINavigationBar class overriding the drawInRect Method. This way you can do want. The disadvantage, all your navigation b …
0
votes

How can I disable the UITableView selection highlighting?

From the UITableViewDelegate Protocol you can use the method willSelectRowAtIndexPath and return nil if you don't want the row selected. In the same way the you can use the willDeselectRow …