objective-c – 后退按钮不会出现在推送的UIViewController上

前端之家收集整理的这篇文章主要介绍了objective-c – 后退按钮不会出现在推送的UIViewController上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UITableViewController.当我点击一个单元格,我想推一个新的视图.这样做不错,但新视图没有后退按钮.为什么是这样?

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;
                    }
                }

解决方法

如果你的表视图控制器是从nib创建的,它的默认标题是@“”(注意:不是nil,而是一个空字符串).

返回按钮有一个错误,如果导航堆栈上的前一个控制器的标题是空字符串,则不显示,因此在表视图控制器中,您需要将标题设置为无效或代码中的某些字符串,或接口中的某些字符串生成器(不能设置为无).

原文链接:https://www.f2er.com/c/112994.html

猜你在找的C&C++相关文章