Quantcast
Channel: User kubi - Stack Overflow
Viewing all articles
Browse latest Browse all 39

Answer by kubi for Dynamically load nib for iPhone/iPad within view controller

$
0
0

EDIT: @Adam's answer below is the correct answer.

To determine which nib to load, do the following, and scrap your initWithMyLovelyData method and use a property to set the data. You should be able to easily move all your init code into the property setter method.

MyViewController *viewController;if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {    viewController = [[MyViewController alloc] initWithNibName:@"ipadNIB" bundle:nil];} else {    viewController = [[MyViewController alloc] initWithNibName:@"iphoneNIB" bundle:nil];}viewController.myLovelyData = someData;

Viewing all articles
Browse latest Browse all 39

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>