- (IBAction)tt:(id)sender {
NSLog(@"%@",@"FF");
[self insertImage: NULL intoAlbumNamed:@"bbbbsssss"];
}
- (void)insertImage:(UIImage *)image intoAlbumNamed:(NSString *)albumName {
//Fetch a collection in the photos library that has the title "albumNmame"
PHAssetCollection *collection = [self fetchAssetCollectionWithAlbumName: albumName];
if (collection == nil) {
//If we were unable to find a collection named "albumName" we'll create it before inserting the image
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
[PHAssetCollectionChangeRequest creationRequestForAssetCollectionWithTitle: albumName];
} completionHandler:^(BOOL success, NSError * _Nullable error) {
if (error != nil) {
NSLog(@"Error inserting image into album: %@", error.localizedDescription);
}
if (success) {
//Fetch the newly created collection (which we *assume* exists here)
PHAssetCollection *newCollection = [self fetchAssetCollectionWithAlbumName:albumName];
// [self insertImage:image intoAssetCollection: newCollection];
}
}];
} else {
//If we found the existing AssetCollection with the title "albumName", insert into it
// [self insertImage:image intoAssetCollection: collection];
}
}
- (PHAssetCollection *)fetchAssetCollectionWithAlbumName:(NSString *)albumName {
PHFetchOptions *fetchOptions = [PHFetchOptions new];
//Provide the predicate to match the title of the album.
fetchOptions.predicate = [NSPredicate predicateWithFormat:[NSString stringWithFormat:@"title == '%@'", albumName]];
//Fetch the album using the fetch option
PHFetchResult *fetchResult = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAlbumRegular options:fetchOptions];
//Assuming the album exists and no album shares it's name, it should be the only result fetched
return fetchResult.firstObject;
}
iOS 創(chuàng)建相薄
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門共啃,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人暂题,你說我怎么就攤上這事移剪。” “怎么了薪者?”我有些...
- 文/不壞的土叔 我叫張陵纵苛,是天一觀的道長。 經(jīng)常有香客問我言津,道長攻人,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任悬槽,我火速辦了婚禮怀吻,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘初婆。我一直安慰自己蓬坡,他們只是感情好猿棉,可當(dāng)我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著屑咳,像睡著了一般萨赁。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上兆龙,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼计寇!你這毒婦竟也來了锣杂?” 一聲冷哼從身側(cè)響起,我...
- 正文 年R本政府宣布撕攒,位于F島的核電站,受9級特大地震影響烘浦,放射性物質(zhì)發(fā)生泄漏抖坪。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一闷叉、第九天 我趴在偏房一處隱蔽的房頂上張望柳击。 院中可真熱鬧,春花似錦片习、人聲如沸捌肴。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽状知。三九已至秽五,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間饥悴,已是汗流浹背坦喘。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 保存到相冊ios方法有很多 但是隨著技術(shù)的更新而且現(xiàn)在已經(jīng)是iOS11了所以我只介紹最新的方法(其中授權(quán)代碼是iO...
- 一印屁、引用類型有哪些循捺?非引用類型有哪些 JS 中分基本類型和引用類型。 基本類型值(數(shù)值雄人、布爾值从橘、字符串、null和...
- 白羽烏雞湯具有補(bǔ)血益氣础钠,滋陰補(bǔ)腎的洋满,多喝有益。 金線蓮中氨基酸和微量元素兩者的含量均高于國產(chǎn)西洋參和野山參珍坊;...