实际上,我遇到了这个问题,我无法弄清原因:
我尝试使用ALAssetsLibrary
,它是AssetsLibrary.framework
的一部分
在我的ViewController.m
中,放置此导入语句
//
// ViewController.m
//
#import "ViewController.h"
#import "ALAssetsLibrary.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
ALAssetsLibrary *assetsLibrary = [[ALAssetsLibrary alloc] init];
}
@end
但是xcode(版本6)为我提供了'ALAssetsLibrary.h'文件,但找不到。
因此,这是到目前为止我检查解决的内容:
我没有头绪,我没有监督,希望有人可以帮助我。
提前致谢
干杯,约翰
最佳答案
用这个#import <AssetsLibrary/AssetsLibrary.h>
关于ios - Objective-C:#import“ALAssetsLibrary.h”-找不到文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28449909/