ios 11 调用系统相册崩溃 Only RGBA or White color spaces are supported in this situation

升级到ios11 在调用系统相册的时候出现崩溃 调用相机不崩溃
提示错误为:Only RGBA or White color spaces are supported in this situation
错误原因为在appdelegete里面加入了:
//UIColor *bgColor = [UIColor colorWithPatternImage: [UIImage imageNamed:@"backgroundColor.png"]];
// [[UINavigationBar appearance] setBarTintColor:bgColor];
特此记录

系统相册对应的key也发生了变化
iOS11之前相册对应的key是NSPhotoLibraryUsageDescription,iOS11对应的Key是NSPhotoLibraryAddUsageDescription。之前的和现在新的两个key都写到info.plist里面就好了

你可能感兴趣的:(ios 11 调用系统相册崩溃 Only RGBA or White color spaces are supported in this situation)