Will Apple reject my app if I do not do this?

Posted by mystify on Stack Overflow See other posts from Stack Overflow or by mystify
Published on 2010-04-10T10:50:21Z Indexed on 2010/04/10 10:53 UTC
Read the original article Hit count: 245

Filed under:
|

From the documentation of UITableView / UITableViewController:

If you decide to use a UIViewController subclass rather than a subclass of UITableViewController to manage a table view, you should perform a couple of the tasks mentioned above to conform to the human-interface guidelines.

To clear any selection in the table view before it’s displayed, implement the viewWillAppear: method to clear the selected row (if any) by calling deselectRowAtIndexPath:animated:. After the table view has been displayed, you should flash the scroll view’s scroll indicators by sending a flashScrollIndicators message to the table view; you can do this in an override of the viewDidAppear: method of UIViewController.

So lets say I do my custom stuff here and I do not flash the scroll indicator, and I do not reset the selection (which I think is wrong anyways, the user wants to know from where he came from). Will they reject it?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uitableview