2012-06-06 71 views
1

我正在使用popoverBackgroundViewClass在我的項目中。如果從iOS5構建,構建在iPad3中運行良好,但在iPad2中會崩潰。我能做些什麼來執行的iOS5建立在所有低版本的iPad如何在所有較低版本的iPad中使用popoverBackgroundViewClass

if (version >= 5.0) 
{ 

    pc.popoverBackgroundViewClass = [KSCustomPopoverBackgroundView class]; 

} 

// PC ------> UIPopOverCotroller //

回答

1

我也有同樣的問題,我解決了。當你從iOS5構建你應該確保

 iOS Deployment Target iOS 3.1 
    ** Compiler for C/C++/Objective-C LLVM GCC 4.2** 
相關問題