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
Post a Comment