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

Is It possible to access photo editing extension from my app

我正在为照片制作一个 iOS 应用程序并将照片本地存储在我的应用程序中。我必须编辑一些照片。所以,我必须写很多代码才能像 apple photos 应用程序那样做。除了自己编写代码之外,还有什么可能的方法可以访问 iPhone 照片应用程序,仅用于从我的应用程序进行编辑。是否可以使用扩展来访问照片编辑功能?提前致谢!

我不明白你所说的扩展是什么意思,但你可以使用 UIImagePickerController 访问照片库(这里是 class 参考 https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImagePickerController_Class/ and the sample code 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];