IOS 개발

[iOS] class PHPhotoLibrary : NSObject

0miming 2020. 3. 23. 17:38

class PHPhotoLibrary : NSObject

 

 

요약

사용자의 공유 사진 라이브러리에 대한 액세스 및 변경을 관리하는 공유 객체입니다.

Summary

A shared object that manages access and changes to the user’s shared photo library.

 

 

Declaration

class PHPhotoLibrary : NSObject

 

 

토론

공유 PHPhotoLibrary 객체는 로컬 앱에 저장된 자산과 iCloud Photos에 저장된 자산을 포함하여 Photos 앱에서 관리하는 전체 자산 및 모음을 나타냅니다. 다음 작업에 이 개체를 사용합니다.

• 앱이 사진 콘텐츠에 액세스 할 수있는 사용자 권한을 얻거나 확인합니다.
자산과 컬렉션을 변경; 예를 들어 자산 메타 데이터 또는 컨텐츠 편집, 새 자산 삽입 또는 컬렉션 멤버 재배열 등이 있습니다.
라이브러리를 변경할 때 전송되는 업데이트 메시지를 등록합니다.

Discussion

The shared PHPhotoLibrary object represents the entire set of assets and collections managed by the Photos app, including both assets stored on the local device and (if enabled) those stored in iCloud Photos. You use this object for the following tasks:

  • Getting or verifying the user's permission for your app to access Photos content.
  • Making changes to assets and collections; for example, editing asset metadata or content, inserting new assets, or rearranging the members of a collection.
  • Registering for update messages sent when changes are made to the library.

 

 

 

 

[참조 : Open in Developer Documentation]