-2

What tricks can I do to make my app feel "snappier"?
For example, when I click on a menu button, which loads a different nib file, there is this 1 second delay before the new view shows up, making it feel like the app isn't responsive.

Thank you,
Tee

teepusink
  • 27,444
  • 37
  • 107
  • 147
  • related: [Tricks for improving iPhone UITableView scrolling performance?](http://stackoverflow.com/questions/1352479/tricks-for-improving-iphone-uitableview-scrolling-performance) – PengOne Oct 11 '11 at 21:28

1 Answers1

2

You could reduce the nib load time by simplifying the content or making some of it load after the view controller appears on-screen.

You can run Instruments on it to try and get an idea of where the choke point is. If it feels unresponsive, compared to other apps, then maybe you're doing something wrong or computationally expensive.

Check that your images are sized correctly. If they're too big that'll up the load time + memory usage.

Kenny Winker
  • 11,919
  • 7
  • 56
  • 78