溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

IOS 判斷相冊是否允許訪問

發(fā)布時間:2020-07-21 15:44:21 來源:網(wǎng)絡(luò) 閱讀:288 作者:a644784668 欄目:移動開發(fā)
  1. ALAssetsLibrary *library = [[ALAssetsLibrary alloc]init];  

  2.     [library writeImageToSavedPhotosAlbum:p_w_picpath.CGImage orientation:p_w_picpath.p_w_picpathOrientation completionBlock:^(NSURL *asSetUrl,NSError *error){  

  3.         if (error) {  

  4.             UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"保存圖片失敗"  

  5.                                                            message:@"請打開 設(shè)置-隱私-照片 來進行設(shè)置"  

  6.                                                           delegate:nil  

  7.                                                  cancelButtonTitle:@"確定"  

  8.                                                  otherButtonTitles:nil, nil];  

  9.             [alert show];  

  10.             [alert release];  

  11.         }else{  

  12.             UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"保存圖片成功"  

  13.                                                            message:nil  

  14.                                                           delegate:nil  

  15.                                                  cancelButtonTitle:@"確定"  

  16.                                                  otherButtonTitles:nil, nil];  

  17.             [alert show];  

  18.             [alert release];  

  19.         }  

  20.           

  21.     }];  


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI