Reputation: 131
Can any one tell me.. I want to work with Camera Application now so I have to know Is it possible to create custom album in IOS 6. I know it is possible in IOS5 then I searched it for IOS6 I did not get any clear information..
Upvotes: 0
Views: 1198
Reputation: 188
Yes, it is possible. The method you want is the ALAssetsLibrary
method addAssetsGroupAlbumWithName:resultBlock:failureBlock:
which is detailed in the docs here: http://developer.apple.com/library/ios/#documentation/AssetsLibrary/Reference/ALAssetsLibrary_Class/Reference/Reference.html#//apple_ref/occ/cl/ALAssetsLibrary
It was introduced in iOS 5 and has not since been deprecated, so I'm not quite sure what the issue is if it's not working for you. You may have to update or repost the question if you are having trouble with it.
Upvotes: 1