1

我在我的项目中使用popoverBackgroundViewClass。如果从 iOS5 进行构建,则构建在 iPad3 中运行良好,但在 iPad2 中崩溃。我该怎么做才能在所有较低版本的 iPad 中执行 iOS5 构建

    if (version >= 5.0)
{

    pc.popoverBackgroundViewClass = [KSCustomPopoverBackgroundView class];

}

//pc-----> UIPopOverCotroller //

4

1 回答 1

1

我也解决了同样的问题。当您从 iOS5 进行构建时,您应该确保

     iOS Deployment Target iOS 3.1
     ** Compiler for C/C++/Objective-C LLVM GCC 4.2**
于 2012-06-07T06:21:13.980 回答