iPhone Dev:多个 XIB 来支持多语言等方向?
我刚刚发现了多个用于语言 ui 支持的 xib,我非常兴奋,因为它比我预期的要简单。 现在我想知道是否可以应用相同的方法来拥有不同方向的多个 xib,只需在包含同名 xib 的项目中创建不同的文件夹即可。
I've just discovered multiple xib for languages ui support, I'm very excited because is simpler than I expected.
Now I was wondering if it's possible to apply same method to have multiple xib for different orientation simply creating different folders in project containing a xib with the same name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事情没那么简单。您可以这样做,以便为 iPad 和 iPhone 提供多个 NIB,但对于方向,您必须在初始化时手动重新加载 NIB(除非您始终以恒定方向加载),和< /em> 在 RotationToInterfaceOrientation 事件期间。
It's not that simple. You can do that to have multiple NIBs for iPad and iPhone, but for orientations, you have to manually reload the NIB both at initialization (unless you always load at a constant orientation), and during a RotationToInterfaceOrientation event.