0

我正在研究通用项目(iPhone/iPad),其中我使用的代码在 iphone 和 ipad 上是相同的。该代码在 iphone 中运行良好,但在 iPad 中无法运行。

它返回以下错误。

dyld:库未加载:/System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 引用自:/Users/mac/Library/Application Support/iPhone Simulator/3.2/Applications/AFE91FFD-27A4-41A9-B5AF-C4336F10A9F3/Move On Inspirational Quotes.app/Move On Inspirational Quotes 原因:找不到图像

谁能告诉我如何解决这个错误。

4

1 回答 1

6

由于 AssetsLibrary 框架仅存在于 iOS 4.0 及更高版本,尝试在早期(即 3.XX)iOS 上运行使用它的应用程序将导致崩溃。要么尝试从你的应用程序中消除对这个框架的使用,要么继续并仅支持 iOS 4.0 及更高版本

于 2012-09-24T06:58:30.797 回答