universal app supports both ipad and iphone。要了解universal如何支持both ipad and iphone,最直接的方法就是创建一个universal project。
universal project的基本特点:
1. target > summary > devices is universal

2. xib for ipad and xib for iphone can share the same view controller,当然使用不同的view controller绝对没问题。
3. in appdelegate.m didFinishLaunchingWithOptions method, use following code to 根据device是ipad还是iphone来指定 access 不同的 view
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
- self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil];
- } else {
- self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPad" bundle:nil];
- }
- <pre name="code" class="cpp"> self.window.rootViewController = self.viewController;</pre> [self.window makeKeyAndVisible];<p></p>
- <pre></pre>
- <br>
- 4. 其他class还可以通过<br>
- <p></p>
- <p></p><pre name="code" class="cpp">[[UIDevice currentDevice] userInterfaceIdiom]</pre>来判断是ipad还是iphone来执行不同的代码<p></p>
- <p><br>
- </p>
- <p><strong><span style="color:#ff0000">如何把iphone app转换成universal app?</span></strong></p>
- <p>非常简单,只需要把target > summary > devices option设置为universal即可。当然你要自己创建一组for ipad的ui,并在delegate.m里根据device指定不同的view。</p>
- <p><br>
- </p>
- <p>ref links:</p>
- <p><a href="http://richielin-programer.blogspot.com/2010/06/iphone-ipad-universal-app.html">http://richielin-programer.blogspot.com/2010/06/iphone-ipad-universal-app.html</a><br>
- </p>
- <p><a href="http://iphonedevelopment.blogspot.com/2010/04/converting-iphone-apps-to-universal.html">http://iphonedevelopment.blogspot.com/2010/04/converting-iphone-apps-to-universal.html</a><br>
- </p>
- <p><br>
- </p>
- <p><br>
- </p>
- <div><br>
- </div>
本文详细介绍了如何创建能够同时支持iPhone和iPad的通用应用,包括如何在Xcode中设置,如何在AppDelegate中根据不同设备加载不同视图控制器,以及如何通过检查设备类型执行不同代码。还提供了将现有iPhone应用转换为通用应用的简单步骤。
1935

被折叠的 条评论
为什么被折叠?



