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

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -