Search Results

0
votes

When should one use UITableView reloadData ? And defect associated ;)

You should minimize reloads in tableviews, and use it only when you cannot update the table other way. For example when deleting a row you do not need a reload, just use deleteRowsAtIndexPath …
0
votes

iPhone UIScrollview with UIButtons - how to recreate springboard?

Another way is: 1. Substitute de button by a simple custom UIView2. Put the flag "userInterationEnable = yes;" on the init method 3. In the view override the UIResponder method "touc …
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 …
0
votes

Remove UIWebView Shadow?

I looked at the class properties and didn't find anything there but I can think of two "cover up" strategies: 1. You can use another view (parent of the web view) to clip the webvi …