以下のコードを使用して、ギャラリーから写真を選択するか、カメラを直接使用しました
- (void)actionSheet:(UIActionSheet *)actionSheet
clickedButtonAtIndex:(NSInteger)buttonIndex {
UIImagePickerController *imagePickerController =
[[UIImagePickerController alloc]init];
imagePickerController.delegate = self;
if (buttonIndex == 0) {
photoButtonNum=0;
[self presentViewController:imagePickerController
animated:YES
completion:nil];
imagePickerController.sourceType =
UIImagePickerControllerSourceTypePhotoLibrary;
} else if (buttonIndex == 1) {
photoButtonNum=1;
[self presentViewController:imagePickerController
animated:YES
completion:nil];
imagePickerController.sourceType =
UIImagePickerControllerSourceTypeCamera;
}
}
選択した写真を iPhone に保存するために、独自のアプリケーションのカスタム ディレクトリ (フォルダー) を作成しようとしています。あなたの助けが必要です
- 自分のアプリのカスタム ディレクトリを作成する
- 選択した写真をそのカスタム ディレクトリに保存します。
私は開発の新人なiPhone
ので、あなたの貴重な助けを待っています. 前もって感謝します。