以编程方式开发通用应用程序时,是否应该为 iPad n iPhone 重新绘制 UI
当我们构建一个通用应用程序时,我们是否应该为 iPod 和 iPad 分别实现 UI?
我们的应用程序没有方向、分割功能来开发。
When we build a universal application, Is that we should implement UI seperatey for iPod and IPad?
Our app do not have orientation,splitting functionalities to develop.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您应该为 ipod 和 ipad 单独开发 UI。对于 ipod,创建一个文件夹 ipod_content 并将 .h 和 .m 文件放在那里,与 ipad 相同。您需要在 Resources 文件夹中为单独的 xib 执行相同的操作。
Yes you should develop the UI seperately for ipod and ipad. For ipod create a folder ipod_content and place your .h and .m files there and same with the ipad. Same thing you need to do in Resources folder for separate xibs.
我取决于。您可以开发 UI,使其相应地缩放,并且可以在 iPod/iPhone 和 iPad 上保持不变(通过 Interface Builder 和编码)。但很多时候,您希望在 iPad 上做不同的事情,因为您有更多的可用空间。除非你不关心它的外观/感觉如何;-)
I depends. You can develop the UI so it scales accordingly and is usable on both iPod/iPhone and iPad unchanged (both via Interface Builder and via coding). But quite often you want to do things differently on the iPad since you've got a lot more space available. Unless you don't care about how it looks/feels like ;-)