我爲xcode 4創建了一個模板,並在其中包含FacebookSDK
。問題是,如果您想在iOS 5上使用sdk,則必須將某些框架(AdSupport,Accounts)設置爲「可選」。我如何從TemplateInfo.plist
將它們設置爲可選項。或者可以有另一種解決方案?xCode 4項目模板中的可選框架
1
A
回答
2
你應該與-weak_framework
添加前綴的框架,以你的OTHER_LDFLAGS,像這樣:
<key>SharedSettings</key>
<dict>
<key>OTHER_LDFLAGS</key>
<string>-all_load -ObjC -weak_framework Accounts -weak_framework Social</string>
<key>CLANG_ENABLE_OBJC_ARC</key>
<string>YES</string>
</dict>
1
相關問題
- 1. 選擇xcode項目模板
- 2. Xcode 4的AudioUnit項目模板?
- 3. 爲XCode 4創建iPhone項目模板
- 4. 具有自定義框架的XCode項目模板
- 5. Xcode和可選的框架
- 6. Xcode 4中本地git項目框架的Git回購
- 7. 的Xcode 5.0缺少項目模板「使用XXX」複選框
- 8. XCode框架項目重寫
- 9. Acumatica缺少框架項目模板
- 10. 將第三方框架添加到Xcode 4項目中
- 11. Xcode - 更改項目模板
- 12. 添加第三方框架,OS X的Xcode 4的項目
- 13. 如何在Xcode 4中創建項目模板
- 14. 在Xcode 4項目模板中包含libsqlite3 dylib
- 15. 如何在Xcode 4中添加Java模板項目?
- 16. '新建項目'窗口中未顯示'用戶模板' - Xcode 4
- 17. 的Xcode 4的項目模板腳本執行
- 18. 從Xcode 4入侵OpenGL ES2模板項目的問題
- 19. 幫助理解OpenGL的Xcode 4項目模板
- 20. 如何從Xcode 4項目創建框架?
- 21. 在xcode 4.0.1中添加項目模板
- 22. 在Xcode 4.2中缺少項目模板
- 23. XCode中缺失項目模板
- 24. 實體框架+ MVC 4 + Knockout.js AddView模板?
- 25. 實體框架4 - POCO - T4模板
- 26. xcode 4 iOS 4.3項目模板不起作用
- 27. 將框架添加到Xcode 4中的多個目標中
- 28. 選擇Netbeans項目模板或者maven的項目模板
- 29. 框架項目中的pod
- 30. 使用框架調試Xcode項目
http://stackoverflow.com/questions/12594070/dyld-library-not-loaded-different-behavior- for-6-0-simulator-6-0-device/12812450#12812450 參考圖像我已附加....希望這會幫助你。 – VSN 2013-02-25 13:32:10