3

我想知道我的应用程序在将图像保存到相册时是否可以访问相册。当应用程序在隐私设置中被禁用时会didFinishSavingWithError返回错误。如何在保存图像之前检测是否允许应用访问相册?

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

- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
{
    if (error != NULL)
    {
        // error        
    }
    else  
    {
        // No errors
    }
}
4

0 回答 0