xcode13 iOS15 遇到的坑 运行慢

xcode13 iOS15 遇到的坑

1. 当调用如下方法保存图片到相册时

  UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);

回调方法中 image参数为空 有用到这个参数需要注意

- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo

2. debug时 从install app 到 didFinish方法调用时间大概要2-3分钟,网上找的的方法是删除

~/资源库/Developer/Xcode/iOS DeviceSupport 目录下所有文件,我发现只需要删除 15.0 (19A346) arm64e 重启xcode 等他重新下载后就好了。

我用的是15年15寸pro ,测试机 xr iOS15.0

你可能感兴趣的:(xcode13 iOS15 遇到的坑 运行慢)