kkurni
kkurni

Reputation: 1371

Storyboard in IOS 5 SDK but also target IOS 4 /3?

I love the idea of using storyboards, but unfortunately when I try to test this using IOS 4, I change the deployment target to IOS 4 and I can't compile this anymore. it said that Storyboards is not supported for IOS 4.3 or later.

So is it useful to use storyboards? How can I write iPhone apps using storyboards so that they can be compatible with IOS 4?

Upvotes: 3

Views: 7556

Answers (1)

Stephen Darlington
Stephen Darlington

Reputation: 52565

I don't think that there's a reasonable way of doing it.

You could instantiate your Storyboards programatically (I think) but then you'd need something to fall back on on pre-iOS5 devices. And what would that be? Probably XIBs... which also continue to work on iOS5. You'd end up implementing everything twice. So, as I say, it may be possible but it's probably not practical.

Upvotes: 2

Related Questions