Swift saves pictures to a custom album

Source: Internet
Author: User

Import Uikitimport photos@available (IOS8.0, *)classCustomablum:nsobject {StaticLet sharedinstance =Customablum () var assetcollection:phassetcollection!var albumfound:bool=falsevar photosasset:phfetchresult!var collection:phassetcollection!var assetcollectionplaceholder:phobjectplaceholder!StaticLet Albumname ="Scan Pictures"    Overrideinit () {super.init (); Self.createalbum ()}Privatefunc createalbum () {Let fetchoptions=phfetchoptions () fetchoptions.predicate= nspredicate (format:"title =%@", Customablum.albumname); Let Collection:phfetchresult=Phassetcollection.fetchassetcollectionswithtype (. Album, subtype:. Any, options:fetchoptions)ifLet _: Anyobject =Collection.firstobject {self.albumfound=trueassetcollection= Collection.firstobject as!Phassetcollection}Else{phphotolibrary.sharedphotolibrary (). performchanges ({Let createalbumrequest:phassetcoll Ectionchangerequest=Phassetcollectionchangerequest.creationrequestforassetcollectionwithtitle (customablum.albumname); Self.assetcollectionplaceholder=createalbumrequest.placeholderforcreatedassetcollection}, Completionhandler: {success, errorinchSelf.albumfound= (success?)true:false)                                        if(Success) {Let Collectionfetchresult=Phassetcollection.fetchassetcollectionswithlocalidentifiers ([                        Self.assetCollectionPlaceholder.localIdentifier], Options:nil) print (Collectionfetchresult) Self.assetcollection= Collectionfetchresult.firstobject as!Phassetcollection}}) }} func SaveImage (image:uiimage) {ifSelf.assetcollection! =Nil {phphotolibrary.sharedphotolibrary (). performchanges ({let assetchangerequest=phassetchangerequest.creationrequestforassetfromimage (image) let Assetplaceholder=Assetchangerequest.placeholderforcreatedasset let Albumchangerequest=phassetcollectionchangerequest (forAssetCollection:self.assetCollection) albumchangerequest?. Addassets ([assetplaceholder!])}, Completionhandler:nil) }}}

The SaveImage method is dropped directly when used.

Swift saves pictures to a custom album

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.