Mam UITableViewController. Kiedy klikam komórkę, chcę wprowadzić nowy widok. To działa dobrze, ale nowy widok nie ma przycisku Wstecz. Dlaczego to?Przycisk powrotu nie pojawia się na wciśniętym UIViewController
TableViewCode:
if([[NSUserDefaults standardUserDefaults] boolForKey:@"isLoggedIn"])
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
ProfileViewController* profileViewController = [[ProfileViewController alloc] initWithNibName:@"ProfileViewController" bundle:nil];
profileViewController.message = [NSDictionary dictionaryWithObjectsAndKeys:cell.textLabel.text, @"user_login", @"default", @"message_source", nil];
switch(indexPath.row) {
case kUsernameRow:
[self.navigationController pushViewController:profileViewController animated:YES];
[profileViewController release];
break;
case kAboutRow:
break;
case kTOSRow:
break;
}
}
Czy ustawiłeś 'self.navigationItem.backBarButtonItem;' w widoku rodzica? – Nekto
ProfileViewController ma tylko 'self.navigationItem.rightBarButtonItem = replyButton;' –
Nie profil, ** parent ** z 'ProfileViewController'. – Nekto