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.
如果我尝试运行它,我会收到错误消息:
“初始化器元素不是编译时常量。”
任何人都可以向像我这样的新人解释为什么会这样吗?
你的代码是正确的。我认为您已经在任何功能之外编写了它。
我的意思是代码行ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];必须在任何方法中,而不是全局(外部函数,以便库变量变为全局)
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];