That Guy
That Guy

Reputation: 470

Splitview with multiple detail views using storyboarding. Seen an example/tutorial?

I'm trying to track down an example like Apple's MultipleDetailViews sample for UISplitViewController, but using storyboards. Their sample code provides functionality similar to what I'm after, I'm just having trouble getting it to work in my app that uses storyboards. It's driving me nuts!

Anyone seen an example/tutorial?

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

Upvotes: 2

Views: 11487

Answers (3)

Sachin Palewar
Sachin Palewar

Reputation: 478

I was searching for something similar for Swift, but didn't find anything. After trying a few times and reading some blog posts and documentation, I could do it myself. Here is my complete working code. Also this is Universal project which uses Adaptive segues and works well for both iPhone and iPad.

Upvotes: 1

igofed
igofed

Reputation: 1442

Try to read this article:
Science At Hand - Adventures in UISplitViewController

I found it very interesting.

Update: Link is dead, here is link from archive.org

Upvotes: 4

hillmark
hillmark

Reputation: 827

Although this is an old thread, I've created a Storyboard and ARC-enabled version of Apple's MultipleDetailViews sample code, as per the OP's original request: public git repo

Upvotes: 6

Related Questions