PickerControllerを実装してユーザーがイメージを選択するようにしましたが、ユーザーが選択したイメージをUIImageViewに表示する必要があります。イメージをカメラロールからUIImageViewに設定する
私はカメラロールに移動するには、以下を使用します。カメラロールが表示されます
- (void) makeUIImagePickerControllerForCamera:(BOOL)camera {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[picker setMediaTypes:[NSArray arrayWithObjects:(NSString *) kUTTypeImage, nil]];
[self presentModalViewController: picker animated: YES];
[self presentModalViewController: picker animated: YES];
}
は、ユーザが写真をクリックすることができます。しかし、クリック後、メインビューに戻りますが、これは明らかです...しかし、ボタンにアクションを割り当てたり、ユーザーが選択したイメージをどのように割り当てることができます。 UIOKButton
のようなもの?私はこれをやって行くのか、正確にはわからない
if ([UIImagePickerController presentModalViewController:nil image:nil] == UIOKButton) {
NSArray *images = [UIImagePickerController images];
for(UIImage* pickerImage in [UIImagePickerController images])
{
myUIImage.image setImage pickerImage;
//^in the view
}
:よう
何か。
すべての応答が高く評価されます。
ありがとうございます!
あなたの答えは、すでに提供されています: http://stackoverflow.com/questions/1269119/uiimagepickerview-controller-image-path-iphone – Steve