I recently started programming for iOS and would like to know what are the main differences between using Storyboards instead of xib files. Specifically, what are the advantages and/or disadvantages of using a Storyboard? Unfortunately, despite doing quite a bit of research, all I've been able to find on Storyboards are simple tutorials that show you how to set up a Storyboard, instead of concrete information explaining what they are. Any information would be greatly appreciated; thank you very much for your time and answers.
|
|
A Storyboard is:
I have been using Storyboards for awhile now and the ONLY downside is that you can't target iOS 4 or below. Storyboards only work on devices running iOS 5 or better. Other than that, the benefits are many and the downsides are non-existent IMO. The best tutorial I have seen is Ray Wenderlich's Also, if you are a member of the Apple Developer program, check out last years WWDC session on Storyboards (iTunesU), it is awesome. Another great one (also on iTunesU) is the latest Stanford iOS Application Programming course. |
|||||||||||||
|
|
There are not only pro sides of Storyboarding, also cons - just because you asked for input:
-The following is not true: - if you need to do things SB doesn't offer, it's not quite easy to get SB mixed with programatical created views (well, it is possible though) The rule of thumb seems to be: the more complex you expect your project to get, the more you'll better not go for SB. EDIT: - another disadvantage of SB: working around all the annoying bugs of XCode regarding SB. E.g. having to frequently flush the DerivedData folder because of serveral inconsistencies. Sometimes storyboard files or the link to them get corrupted. Then you might have the joy to search for the problem. Take a look at this thread to get the idea EDIT 2 (March 2013): meanwhile Storyboards and Xcode are working much better, and documentation and best practices are wide spread. I think working with storyboard can be recommended for a majority of projects, even if there are still some glitches. |
|||||||||
|
|
Be careful, if you use Storyboards your app is not backwards compatible with older OS installations. |
|||||||||
|
|
There was a nice presentation about Storyboard given at the LiDG meeting a couple of months ago. Personally, I'd say it's the way to go with a new app. There are some gaps, especially for very complex apps, but the pro's mostly outweigh the cons. |
|||||
|
|
A storyboard is basically a device to make your job as a developer easier. It is complied into a series of nib files, so the performance is pretty much equivalent, but it's great as a developer to be able to look at a quick overview of your entire application flow. I'm starting to transition to using storyboards on new projects, providing I can convince the client to accept iOS 5 as a minimum version. This is purely because I prefer to do it this way, and it takes me less time to accomplish the same tasks. |
|||
|
|