设置左视图景观 (iPhone SDK)

发布于 2024-10-18 07:40:26 字数 208 浏览 1 评论 0原文

嘿伙计们, 刚开始使用 iPhone SDK,我构建了一个简单的 iPhone 应用程序,用于显示本地存储的网页,但我想让该应用程序以 UIWebView 横向启动(左侧横向)。

我已在 plist 中将初始界面方向设置为横向(左主页按钮),但是我如何实际旋转视图,因为当我加载它时,视图保持纵向且设备处于侧面!

谢谢

Hey guys,
just starting off with the iPhone SDK, I've built a simple iPhone app that displays locally stored webpages, but I want to get the app to start with the UIWebView sideways (Landscape left).

I've set Initial interface orientation to Landscape (left home button) in the plist, but how do I actually rotate the view, because when I load it up, the view stays in portrait and the device is sideways!

Thanks

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

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

发布评论

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

评论(1

许你一世情深 2024-10-25 07:40:26

如果您想在用户移动 iPhone 时允许所有方向
只需将其添加到您的 UIViewController 中:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 return YES
}

in case you wanna allow all orientations if user move his iPhone
just add this in your UIViewController:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 return YES
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文