Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 NSURL 类成员,它可以指向本地文件、URL或资产。我发现我必须使用资产库来加载资产,而不是:
[NSData dataWithContentsOfURL:nsurl];
所以我的问题是:如何检查我的 NSURL 对象是否指向资产?
我已经尝试过搜索,但我只有如何检查它是否是本地文件:(
PS:我的应用程序必须与 iOS4 兼容
假设 URL 格式正确,则它是资产库 URL iff [[url scheme] isEqualToString:@"assets-library"]。
[[url scheme] isEqualToString:@"assets-library"]