Splitview with several detailed views using storyboards. See an example / tutorial?

I am trying to track an example, for example, Apple MultipleDetailViews sample for UISplitViewController, but using storyboards. Their sample code provides functionality similar to what I need, I just can't get it to work in my application that uses storyboards. It drives me crazy!

Has anyone seen an example / tutorial?

This is the non-storyboard version of Apple: http://developer.apple.com/library/ios/#samplecode/MultipleDetailViews/Introduction/Intro.html

+2
source share
3 answers

Try reading this article:
Science in the Hand - Adventures in the UISplitViewController

It was very interesting to me.

Update: The link is dead, here is a link from archive.org

+4
source

Although this is an old thread, I created a version of the Apple MultipleDetailViews example with storyboard and ARC, according to the original OP request: public git repo

+6
source

I was looking for something similar for Swift, but I did not find anything. After trying several times, reading some blog posts and documentation, I was able to do it myself. Here is my blog post explaining and here is the full working code . It is also a universal project that uses Adaptive segues and works well for both iPhone and iPad.

+1
source

All Articles