gpt4 book ai didi

objective-c - 编译器警告...从枚举类型 'UIInterfaceOrientation' 到不同枚举类型 'UIDeviceOrientation' 的隐式转换?

转载 作者:太空狗 更新时间:2023-10-30 03:19:38 25 4
gpt4 key购买 nike

在 Xcode 中,我在 FBConnect 的以下行中收到警告:

_orientation = [UIApplication sharedApplication].statusBarOrientation;

这是完整的警告:

Implicit conversion from enumeration type 'UIInterfaceOrientation' to different enumeration type 'UIDeviceOrientation'

有什么办法可以解决这个问题吗?

谢谢!

最佳答案

尝试改变

_orientation = [UIApplication sharedApplication].statusBarOrientation;

 _orientation = (UIDeviceOrientation)[UIApplication sharedApplication].statusBarOrientation;

关于objective-c - 编译器警告...从枚举类型 'UIInterfaceOrientation' 到不同枚举类型 'UIDeviceOrientation' 的隐式转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6320327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com