从一个VC到另一个VC,但之后一切都挂了

时间:2018-04-20 10:13:32

标签: ios objective-c uiviewcontroller

您好我设法使用以下代码从TopVC转到BottomVC。但在那之后我的bottomVC将无效。单击链接时,BottomVC将不会继续前进。

FromTopToBottom

已编辑的答案

Top VC我使用以下代码转到bottomVC,我实际上是去了BottomVC还是BottomClass?

    UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"BuyCredit"];
    vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    [[self navigationController] pushViewController:vc animated:YES];

    UINavigationController* classesNav = (UINavigationController*)self.tabBarController.viewControllers[4];
    BuyCredit *classesViewController = [classesNav.viewControllers firstObject];
    [classesViewController fromClassBook:sURL];

底部VC假设在单击链接时加载另一个VC,但所有内容都挂起

- (void)viewDidLoad {

    [super viewDidLoad];

    sURL = self.urlString;

    NSLog(@"Receiving From and the sURL :  %@", sURL);

    NSURL *url = [NSURL URLWithString:sURL];
    NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
    [webView setDelegate:(id<UIWebViewDelegate>)self];
    [webView loadRequest:urlRequest];

}

- (void)fromClassBook:(NSString*)string {

    sURL = string;
    NSLog(@"Please pass over **** %@", sURL);

    NSURL *url = [NSURL URLWithString:sURL];
    NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
    [webView setDelegate:(id<UIWebViewDelegate>)self];
    [webView loadRequest:urlRequest];

}


- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    PurchaseDet *target = segue.destinationViewController;

    if ([segue.identifier isEqualToString:@"PurchaseDet"]) {

        target.urlString = sURL;

    } 
}


- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {

    NSURL *URL = [request URL];
    NSString *theString = [URL absoluteString];
    NSRange match;

    NSLog(@"Detect the URL theString :  %@", theString);

    match = [theString rangeOfString: @"PHPSMI"];

    //--- If the URL string does not contain purchase_det.asp meaning it will load the webview
    if (match.location == NSNotFound) {
        sURL = theString;
        return YES; //--- Load webview

    } else {  //--- Because currently the purchase confirm page is just another page, hence will reload the current webview.

        NSLog(@"Will pass to SEQUE and called the URL :%@",theString);
        //--- Calling this method will tell the segue hey I want to redirect to another viewController.
        //--- Update the sURL with the latest String
        sURL = theString;

        [self performSegueWithIdentifier:@"PurchaseDet" sender:self];

        return NO; // Don't load the webview, capture the sURL and trigger NewsDet segue, and then pass sURL as urlstring to destination VC
    }

}
@end

1 个答案:

答案 0 :(得分:1)

替换

[self presentViewController:vc animated:YES completion:NULL];

使用

[[self navigationController] pushViewController:vc animated:YES];

注意: - 你只是在TopVC上呈现了bottomVC。因此rootViewController仍然是TopVC。因此,当你调用performSegueWithIdentifier时,它会获得bottomVC的nil对象。

试试这个..