iphone - How can I set the titlebar title for a modal view controller? -


self.title = @"my view";

doesn't work when view presented modally.

you must write following code presenting modalview controller..

yourmodelcontroller =[[yourmodelcontroller alloc]init];  uinavigationcontroller *controller = [[uinavigationcontroller alloc] initwithrootviewcontroller: yourmodelcontroller];  [[self navigationcontroller] presentmodalviewcontroller:controller animated:yes]; [controller release]; 

then in viewdidload-method u need write

self.title =@"my view"; 

it work definitely. hope you.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -