成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么在iOS中實(shí)現(xiàn)從系統(tǒng)相冊(cè)選取多張照片-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)怎么在iOS中實(shí)現(xiàn)從系統(tǒng)相冊(cè)選取多張照片,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

創(chuàng)新互聯(lián)是一家專業(yè)提供克拉瑪依區(qū)企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、成都網(wǎng)站制作、H5響應(yīng)式網(wǎng)站、小程序制作等業(yè)務(wù)。10年已為克拉瑪依區(qū)眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計(jì)公司優(yōu)惠進(jìn)行中。

1.pod導(dǎo)入

pod 'CTAssetsPickerController'

2.添加頭文件

#import <CTAssetsPickerController/CTAssetsPickerController.h>

3.添加delegate

<CTAssetsPickerControllerDelegate>

4.實(shí)現(xiàn)

- (void)upLoading {
  [PHPhotoLibraryrequestAuthorization:^(PHAuthorizationStatus status){
    if (status !=PHAuthorizationStatusAuthorized)return;
    dispatch_async(dispatch_get_main_queue(), ^{
      CTAssetsPickerController *picker = [[CTAssetsPickerControlleralloc] init];
      picker.delegate =self;
      // 顯示選擇的索引
      picker.showsSelectionIndex =YES;
      // 設(shè)置相冊(cè)的類型:相機(jī)膠卷 +自定義相冊(cè)
      picker.assetCollectionSubtypes =@[
                        @(PHAssetCollectionSubtypeSmartAlbumUserLibrary),
                        @(PHAssetCollectionSubtypeAlbumRegular)];
      // 不需要顯示空的相冊(cè)
      picker.showsEmptyAlbums =NO;
      [selfpresentViewController:pickeranimated:YEScompletion:nil];
    });
  }];
}

-(BOOL)assetsPickerController:(CTAssetsPickerController *)picker shouldSelectAsset:(PHAsset *)asset
{
  NSInteger max =9;
  if (picker.selectedAssets.count >= max) {
    UIAlertController *alert = [UIAlertControlleralertControllerWithTitle:@"提示"message:[NSStringstringWithFormat:@"最多選擇%zd張圖片", max] preferredStyle:UIAlertControllerStyleAlert];
    [alert addAction:[UIAlertActionactionWithTitle:@"好的"style:UIAlertActionStyleDefaulthandler:nil]];
    [picker presentViewController:alertanimated:YEScompletion:nil];
    // 這里不能使用self來(lái)modal別的控制器,因?yàn)榇藭r(shí)self.view不在window上
    returnNO;
  }
  returnYES;
}

-(void)assetsPickerController:(CTAssetsPickerController *)picker didFinishPickingAssets:(NSArray *)assets
{
  
  NSArray *array =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
  NSString *documents = [arraylastObject];
  NSString *documentPath = [documentsstringByAppendingPathComponent:@"arrayXML.xml"];
  
  NSArray *dataArray = [NSArrayarrayWithArray:assets];
  
  
  [dataArray writeToFile:documentPathatomically:YES];
  
  
  
  NSArray *resultArray = [NSArrayarrayWithContentsOfFile:documentPath];
  NSLog(@"%@", documentPath);
  
  
  // 關(guān)閉圖片選擇界面
  [picker dismissViewControllerAnimated:YEScompletion:nil];
  
  // 遍歷選擇的所有圖片
  self.plCollection.photoArray = assets;
  for (NSInteger i =0; i < assets.count; i++) {
    // 基本配置
    CGFloat scale = [UIScreenmainScreen].scale;
    PHImageRequestOptions *options = [[PHImageRequestOptionsalloc] init];
    options.resizeMode  =PHImageRequestOptionsResizeModeExact;
    options.deliveryMode =PHImageRequestOptionsDeliveryModeHighQualityFormat;
    
    PHAsset *asset = assets[i];
    CGSize size =CGSizeMake(asset.pixelWidth / scale, asset.pixelHeight / scale);
//    // 獲取圖片
    [[PHImageManagerdefaultManager] requestImageForAsset:assettargetSize:size contentMode:PHImageContentModeDefaultoptions:options resultHandler:^(UIImage *_Nullable result,NSDictionary *_Nullable info) {
      NSData *imageData =UIImageJPEGRepresentation([selfimageWithImageSimple:resultscaledToSize:CGSizeMake(200,200)], 0.5);
      [selfossUpload:imageData];

    }];
  }
}

關(guān)于怎么在iOS中實(shí)現(xiàn)從系統(tǒng)相冊(cè)選取多張照片就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站jinyejixie.com,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

分享文章:怎么在iOS中實(shí)現(xiàn)從系統(tǒng)相冊(cè)選取多張照片-創(chuàng)新互聯(lián)
網(wǎng)址分享:http://jinyejixie.com/article32/ccespc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開(kāi)發(fā)、App開(kāi)發(fā)、網(wǎng)站策劃、手機(jī)網(wǎng)站建設(shè)、定制網(wǎng)站、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)
太仓市| 都安| 陆良县| 资源县| 敦化市| 龙里县| 高邮市| 淮南市| 长治县| 手机| 渭源县| 集贤县| 碌曲县| 江安县| 安乡县| 金湖县| 武隆县| 北票市| 绥江县| 威宁| 上栗县| 北海市| 铜山县| 道孚县| 张北县| 登封市| 马龙县| 临沧市| 崇州市| 剑阁县| 湖南省| 镇坪县| 雅安市| 社旗县| 林口县| 壶关县| 马关县| 红安县| 于都县| 拜城县| 清镇市|