是否可以从我的应用程序访问照片编辑扩展程序

时间:2015-03-02 07:03:34

标签: ios ios8 photo-gallery

我正在为照片制作iOS应用程序,并在我的应用程序内部存储照片。我必须编辑一些照片。所以,我必须编写很多代码,就像苹果照片应用程序一样。而不是自己编写代码是否有任何可能的方式来访问iPhone照片应用程序,只是为了从我的应用程序编辑。是否可以使用扩展来访问照片编辑功能?在此先感谢!

1 个答案:

答案 0 :(得分:0)

我不完全是指扩展名是什么意思,但您可以使用UIImagePickerController访问照片库(这里是类引用https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImagePickerController_Class/和示例代码https://developer.apple.com/library/prerelease/ios/samplecode/PhotoPicker/Introduction/Intro.html)。你可以允许编辑如下

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
     [imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera];
} else {
    [imagePicker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
}

[imagePicker setAllowsEditing:YES];
[imagePicker setDelegate:self];