iOS扩展中的statusBarOrientation

时间:2016-04-10 08:56:05

标签: ios uiapplication

我的iOS扩展程序遇到了一些问题。我的图书馆使用[[UIApplication sharedApplication] statusBarOrientation]来检测方向。 sharedApplication在iOS扩展程序中不可用,所以我认为我会使用宏。它不断抛出sharedApplication is unavailable。我究竟做错了什么?如您所见,我已正确设置宏。 enter image description here

UIInterfaceOrientation orientation;

#if !defined(TARGET_IS_EXTENSION)
    orientation = [[UIApplication sharedApplication] statusBarOrientation];
#else
    orientation = UIInterfaceOrientationPortrait;
#endif

0 个答案:

没有答案