gpt4 book ai didi

ios - Xcode 4.6中的iOS7的statusBar

转载 作者:行者123 更新时间:2023-12-01 17:18:25 26 4
gpt4 key购买 nike

我想解决iOS7中statusBar的问题。我找到了this post,此解决方案在Xcode 5中效果很好。但是,当我在Xcode 4.6.3中尝试此代码时,出现2个错误:

  • No visible @interface for 'MyController' declares the selector
    'setNeedsStatusBarAppearanceUpdate'
    ;
  • Use of undeclared identifier
    'UIStatusBarStyleLightContent'

  • 通过使用以下代码解决了第一个问题: [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];,但我无法解决第二个错误。

    最佳答案

    这些是iOS 7的功能,它们无法在试图针对iOS 6进行编译的XCode 4.6.3中进行编译。您需要有条件地将它们编译出去。

    用以下代码包装有问题的代码:

    #if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000
    //iOS 7 only stuff here
    #endif

    关于ios - Xcode 4.6中的iOS7的statusBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18375832/

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