簡體   English   中英

取消按鈕在UIImagePickerView中不起作用

[英]Cancel button not working in UIImagePickerView

我在代碼中使用UIImagePickerView ,其中有三個按鈕。 一個拍照,第二個選擇照片,第三個取消。 代碼如下:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Select the operation to proceed?"
                                                                 delegate:self
                                                        cancelButtonTitle:@"Cancel"
                                                   destructiveButtonTitle:nil
                                                        otherButtonTitles:@"Take Photo", @"Select Photo", nil];
        [actionSheet showInView:self.view];

當我單擊“取消”按鈕時,它不起作用。

我正在使用UIImagePickerViewDelegate方法,如下所示。

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    @try {
        //set selected image in imageview by imagepickerview

    UIImage *chosenImage = info[UIImagePickerControllerEditedImage];
    imgProfilePic.image = chosenImage;

    [picker dismissViewControllerAnimated:YES completion:nil];
    }
    @catch (NSException *exception) {
        NSLog(@"%@",exception.description);
    }
}

//- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
//{
//    NSLog(@"@@@@");
//    [picker dismissViewControllerAnimated:YES completion:NULL];
//}

請檢查我的UIImagePickerView代碼,並為我提供正確代碼的指導。

#pragma mark - Actionssheet delegate method for Image

-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    @try {

    if(buttonIndex != 3)
    {

        UIImagePickerController *picker = [[UIImagePickerController alloc] init];
        picker.delegate = self;
        picker.allowsEditing = YES;

        if(buttonIndex == 0)
        {
            NSLog(@"Choose Photo from Camera");

            //simulator has no camera so app will crash, below call just provide the alert that device has no camera.
            if (![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {

                UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"Error"
                                                                      message:@"Device has no camera"
                                                                     delegate:nil
                                                            cancelButtonTitle:@"OK"
                                                            otherButtonTitles: nil];

                [myAlertView show];

            }
            else
            {
                picker.sourceType = UIImagePickerControllerSourceTypeCamera;
            }
        }
        if(buttonIndex == 1)
        {
            NSLog(@"Choose Photo from Gallary");
            picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

        }

//        if (buttonIndex == 3)
//        {
//            NSLog(@"###");
//        }
//        
//        else
//        {
//            NSLog(@"Cancel the tab");
//            [picker dismissViewControllerAnimated:YES completion:NULL];
//
//        }
        [self presentViewController:picker animated:YES completion:nil];


    }
    }
    @catch (NSException *exception) {
        NSLog(@"%@",exception.description);

    }
}

我認為您是StackOverflow和iOS應用程序開發的新手。 UIActionsheetUIImagePickerController都是不同的東西。 因此,如果您要創建一個活動表,例如:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Select the operation to proceed?"delegate:self
         cancelButtonTitle:@"Cancel"
         destructiveButtonTitle:nil otherButtonTitles:@"Take Photo", @"Select Photo", nil];
        [actionSheet showInView:self.view];

現在,您可以按以下方式調用其按鈕方法:

   -(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
    {
        if (buttonIndex==0)
            {
                   // take photo selected
            }
            else if (buttonIndex==1)
            {
                   // select photo selected
            }
            else
            {
                  // cancel button selected
            }
     }

您還可以使用UIAlertController替代UIAlertUIActionSheet ,因此可以像以下方式使用:

UIAlertController* AlertSheet = [UIAlertController alertControllerWithTitle:@"New ActionSheet" message:nil preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"Action" style:UIAlertActionStyleDefault //
                                                      handler:^(UIAlertAction * action) {
                                                          NSLog(@"Action");
                                                      }];
[AlertSheet addAction:defaultAction];

UIAlertAction *cancleAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

}];
[AlertSheet addAction:cancleAction];
[self presentViewController:AlertSheet animated:YES completion:nil];

您可以嘗試此代碼為我工作

UIAlertController* alert = [UIAlertController
                            alertControllerWithTitle:nil      //  Must be "nil", otherwise a blank title area will appear above our two buttons
                            message:nil
                            preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction* button0 = [UIAlertAction
                          actionWithTitle:@"Cancel"
                          style:UIAlertActionStyleCancel
                          handler:^(UIAlertAction * action)
                          {
                              //  UIAlertController will automatically dismiss the view
                          }];

UIAlertAction* button1 = [UIAlertAction
                          actionWithTitle:@"Take photo"
                          style:UIAlertActionStyleDefault
                          handler:^(UIAlertAction * action)
                          {
                              //  The user tapped on "Take a photo"
                              UIImagePickerController *picker = [[UIImagePickerController alloc] init];
                              picker.delegate = self;
                              picker.allowsEditing = YES;
                              picker.sourceType = UIImagePickerControllerSourceTypeCamera;

                              [self presentViewController:picker animated:YES completion:NULL];                              }];

UIAlertAction* button2 = [UIAlertAction
                          actionWithTitle:@"Choose Existing"
                          style:UIAlertActionStyleDefault
                          handler:^(UIAlertAction * action)
                          {
                              //  The user tapped on "Choose existing"
                              UIImagePickerController *picker = [[UIImagePickerController alloc] init];
                              picker.delegate = self;
                              picker.allowsEditing = YES;
                              picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

                              [self presentViewController:picker animated:YES completion:NULL];
                          }];

[alert addAction:button0];
[alert addAction:button1];
[alert addAction:button2];
[self presentViewController:alert animated:YES completion:nil];

從iSO 8開始不推薦使用UIActionSheet。您應該使用UIAlertController

UIAlertController* alert = [UIAlertController
                            alertControllerWithTitle:nil      //  Must be "nil", otherwise a blank title area will appear above our two buttons
                            message:nil
                            preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction* button0 = [UIAlertAction
                          actionWithTitle:@"Cancel"
                          style:UIAlertActionStyleCancel
                          handler:^(UIAlertAction * action)
                          {
                                //  UIAlertController will automatically dismiss the view
                          }];

UIAlertAction* button1 = [UIAlertAction
                          actionWithTitle:@"Take photo"
                          style:UIAlertActionStyleDefault
                          handler:^(UIAlertAction * action)
                          {
                              //  The user tapped on "Take a photo"
                              UIImagePickerController *imagePickerController= [[UIImagePickerController alloc] init];
                              imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
                              imagePickerController.delegate = self;
                              [self presentViewController:imagePickerController animated:YES completion:^{}];
                          }];

UIAlertAction* button2 = [UIAlertAction
                         actionWithTitle:@"Select Photo"
                         style:UIAlertActionStyleDefault
                         handler:^(UIAlertAction * action)
                         {
                             //  The user tapped on "Select Photo"
                             UIImagePickerController *imagePickerController= [[UIImagePickerController alloc] init];
                             imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
                             imagePickerController.delegate = self;
                             [self presentViewController:imagePickerController animated:YES completion:^{}];
                         }];

[alert addAction:button0];
[alert addAction:button1];
[alert addAction:button2];
[self presentViewController:alert animated:YES completion:nil];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM