B中创建alertView的时候传入参数:B控制器。
然后
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"Subscribed!" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
[self.vc.navigationController popViewControllerAnimated:YES];
}];
[alertControlleraddAction:okAction];
网友评论