Modal View with Navigation Controller

前端 未结 3 1162
耶瑟儿~
耶瑟儿~ 2020-12-13 07:59

still cannot figure out what I am doing wrong. Just trying to get a modal view with a navigation controller inside.

Here is my project http://www.matthewpateman.com/

3条回答
  •  北海茫月
    2020-12-13 08:38

    ShopModalViewController *shopMVC = [[ShopModalViewController alloc] initWithNibName:@"ShopModalViewController" bundle:nil];
    //set properties
    UINavigationContrller *navCon = [[UINavigationController alloc] initWithRootViewController:shopMVC];
    [self presentModalViewController:navCon animated:YES];
    [shopMVC release];
    [navCon release];
    

提交回复
热议问题