我怎样才能回到以前的视图控制器?

How can I go back to the previous view controller?

当用户从 UIAlertController 弹出窗口中单击 "OK" 按钮时,它将返回到上一个视图 controller.I 卡住了如何 that.Below 这是我的代码。

if (jsonData == nil){
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error!" message:@"This Git repository is empty" preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
    [alertController addAction:ok];

    [self presentViewController:alertController animated:YES completion:nil];

      }

试试这个 -

if (jsonData == nil){
        UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error!" message:@"This Git repository is empty" preferredStyle:UIAlertControllerStyleAlert];

        UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action){
            // Ok action example
            [self.navigationController popViewControllerAnimated:YES];
        }];
        [alertController addAction:ok];

        [self presentViewController:alertController animated:YES completion:nil];
    }