旋转横向和纵向

发布于 2024-12-09 04:32:51 字数 91 浏览 0 评论 0原文

我在 UIView 中旋转有问题,在 UIView 中我有 UIimage 和 UI 工具栏 当我改变不同的旋转时, UIImage 和 UIToolBar 也应该改变

I have problem in rotation in UIView, In UIView I have UIimage and UI toolbar
when I change different rotation then UIImage and UIToolBar should also be changed

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

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

发布评论

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

评论(2

吖咩 2024-12-16 04:32:51

对于 iOS 6,在您的视图控制器中执行此操作,

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait
         | UIInterfaceOrientationMaskPortraitUpsideDown
         | UIInterfaceOrientationLandscapeLeft;
}

这将使纵向、颠倒纵向和横向的方向向左。

for iOS 6, In your view controller do this,

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait
         | UIInterfaceOrientationMaskPortraitUpsideDown
         | UIInterfaceOrientationLandscapeLeft;
}

This will make orientation for Portrait, upside-down portrait and landscape left.

爱给你人给你 2024-12-16 04:32:51
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

http://goodliffe.blogspot.com/2009/ 12/iphone-forcing-uiview-to-reorientate.html

查看此网站了解更多详细信息。

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

http://goodliffe.blogspot.com/2009/12/iphone-forcing-uiview-to-reorientate.html

check this site for more detail.

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