how to programmatically create UISplitViewController?
I need a simple UISplitViewController to be created programmatically? Wherever i see it开发者_Python百科 is only using XIB.. so kindly provide a link or example for UISplitViewController programmatically...
UISplitViewController *c = [[[UISplitViewController alloc] init] autorelease];
c.viewControllers = [NSArray arrayWithObjects:myVC1, myVC2, nil];
If you need anything more than that, you'll have to ask a better question...
精彩评论