将 iPad 应用程序转换为通用应用程序

发布于 2024-12-06 05:57:03 字数 184 浏览 1 评论 0原文

我们目前有一个针对 iPad 的应用程序。我们现在也想瞄准 iPhone。我只是想知道我们该怎么做? UI 布局和功能会有所不同,但在幕后它们将共享许多相同的代码。

我最好创建一个通用应用程序吗?或者必须将一个用于 iPad 的应用程序和一个用于 iPhone 的应用程序分开?

任何帮助将不胜感激。

谢谢

We currently have an app that targets the IPad. We now would like to target the IPhone aswell. Im just wondering how we go about this? UI layout and functionality will be different but under the hood they will be sharing a lot of the same code.

Am I best creating a Universal app? or having to seperate apps one for the ipad and one for the iphone?

Any help will be greatly appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挥剑断情 2024-12-13 05:57:03

使用这两个宏

#define FOR_IPAD   (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define FOR_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)

if(FOR_IPAD)
  //load view for iPAD
else
  //load view for iPhone

Use these two macros

#define FOR_IPAD   (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define FOR_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)

if(FOR_IPAD)
  //load view for iPAD
else
  //load view for iPhone
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文