How do i add a button to the right of a navigation item in a view controller?
A:
self.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"About" style:UIBarButtonItemStyleBordered target:self action:@selector(aboutB)] autorelease];
tarnfeld
2010-04-10 22:53:39