使用默认导航栏文本

时间:2012-06-07 20:02:21

标签: objective-c ios uinavigationcontroller storyboard uinavigationitem

我正在使用故事板并开发iPhone应用程序并使用导航控制器。

当我实现它时,我注意到它使用视图的名称而不是使用默认的“后退”文本,有没有办法强制它使用“后退”?

由于

3 个答案:

答案 0 :(得分:0)

来自http://osmorphis.blogspot.com/2009/03/trapping-uinavigationbar-back-button.html

  

您可以在标准后退按钮上更改的唯一内容是文本。默认情况下,这是控制器的标题。您可以使用以下代码进行更改:

[self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"New Title" style:UIBarButtonItemStyleBordered target:nil action:nil]; 

只需替换

initWithTitle:@"New Title"

initWithTitle:@"Back"

答案 1 :(得分:0)

在提问之前尝试搜索。

似乎您可以将以下代码添加到控制器中,以便向下钻取,即主 - 详细信息中的主控。

UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil];
self.navigationItem.backBarButtonItem = backButton;
[backButton release];

点击iPhoneGuy:iPhone Dev SDK

答案 2 :(得分:0)

当您显示UINavigationController时,可能是在您的应用程序代理中,让应用程序的代理人也成为导航控制器的代理人。然后观察弹出和推送的视图控制器:

<强> AppController.h

#import <UIKit/UIKit.h>

@interface AppController.h : NSObject 
<UIApplicationDelegate, UINavigationControllerDelegate> 
{
    UIWindow *window;
    UINavigationController *viewController;
}
/* MARK: Interface Outlets */
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UINavigationController *viewController;
@end

<强> AppController.h

#import "AppController.h"

@implementation AppController.h
/* MARK: Init and Dealloc */
- (void)dealloc {
    self.window = nil;
    self.viewController = nil;

    [super dealloc];
}

/* MARK: Interface Outlets */
@synthesize window, viewController;

/* MARK: Application Delegate */
- (BOOL)application:(UIApplication *)application 
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    assert(self.window != nil);
    assert(self.viewController != nil);

    self.viewController.delegate = self;

    /* other initialization */

    [self.window makeKeyAndVisible];

    return YES;
}

/* MRK: Navigation Controller Delegate */
- (void)navigationController:(UINavigationController *)navigationController 
      willShowViewController:(UIViewController *)vc 
                    animated:(BOOL)animated
{
    UIBarButtonItem *myItem = /* initialize */;

    navigationController.topViewController.navigationItem.backBarButtonItem = nil;
    navigationController.topViewController.navigationItem.backBarButtonItem = myItem;
}
@end

此外,您可以通过检查所需视图控制器的“-[NSObject isKindOfClass:]匹配”来忽略自定义视图控制器。