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

php - How can I edit my code to echo the data of child's element where my search term was found in, in XMLReader? -

javascript - Iterate over array and calculate average values of array-parts -

jQuery Ajax Render Fragments OR Whole Page -