iphone - Pushing view from Modal View -
im trying push view modal view. im trying doing same things on other views. problem is, think, thats modalview doesnt have navigation controller.
cadastroviewcontroller *vaicadastro = [[[cadastroviewcontroller alloc] initwithnibname: nsstringfromclass([cadastroviewcontroller class]) bundle:nil] autorelease]; [self.navigationcontroller presentmodalviewcontroller:vaicadastro animated:yes];
what can push view inside of modal view?
thanks!
"but problem is, think, thats modalview doesnt have navigation controller."
yes, modal view controller doesn't have nav controller unless create 1 , add modal view controller. it'll work.
btw, may wonder whether modal view controller , parent controller can share nav controller or not, well, answer no, need create separate nav controllers pushing-and-popping @ different controller hierarchies.
Comments
Post a Comment