将标题添加到模态视图控制器工具栏的正确方法?

Mic*_*ael 8 iphone cocoa-touch objective-c

现在我在我的-viewDidLoad方法中使用它:

UIToolbar *toolbar = [[UIToolbar alloc] init];

UIBarButtonItem *flexibleSpace = [UIBarButtonItem alloc];
flexibleSpace = [flexibleSpace initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace
                                                    target:nil
                                                    action:nil];

// Add a back button to allow user to close the modal view
NSString *back = NSLocalizedString(@"Back", nil);
UIBarButtonItem *backButton = [UIBarButtonItem alloc];
backButton = [backButton initWithTitle:back
                                 style:UIBarButtonItemStyleDone
                                target:self
                                action:@selector(dismissModalViewControllerAnimated:)];

// Add a centered title to the toolbar

// I doubt this is the "correct" way to do this, but it seems to work.
// The "width" property of a UIBarButtonItem doesn't seem to correspond to
// the actual width if the button is flexible (i.e. the width isn't explicitly
// set), so I'm using this hack instead.
// This is obviously NOT an optimal solution. For one thing, if the button padding
// ever changes, it has to be changed manually here as well. For another, it is
// a pain to do this for every button I add to the toolbar, and furthermore the title
// is centered only according to its own width, not the toolbar's.
const CGRect toolbarFrame = [toolbar frame];
const CGFloat backWidth = [back sizeWithFont:[UIFont boldSystemFontOfSize:[UIFont buttonFontSize]]
                           constrainedToSize:toolbarFrame.size].width;

const CGRect titleFrame = {{0.0f, 0.0f},
                           {toolbarFrame.size.width - (backWidth * 2.0f), 50.0f}};
UILabel *titleLabel = [[UILabel alloc] initWithFrame:titleFrame];
[titleLabel setText:[self title]];
[titleLabel setBackgroundColor:[UIColor clearColor]];
[titleLabel setTextAlignment:UITextAlignmentCenter];
[titleLabel setFont:[UIFont boldSystemFontOfSize:20.0f]];
[titleLabel setTextColor:[UIColor whiteColor]];
[titleLabel setShadowColor:[UIColor colorWithWhite:0.0f alpha:0.5f]];
[titleLabel setShadowOffset:CGSizeMake(0.0f, -1.0f)];

UIBarButtonItem *titleItem = [[UIBarButtonItem alloc] initWithCustomView:titleLabel];
[titleLabel release];

NSArray *items = [[NSArray alloc] initWithObjects:flexibleSpace, titleItem, backButton, nil];
[flexibleSpace release];
[titleItem release];
[backButton release];

[toolbar setItems:items];
[items release];

[view addSubview:toolbar];
[toolbar release];
Run Code Online (Sandbox Code Playgroud)

有没有人有更好的方法来做到这一点?我正在使用的感觉就像一个主要的黑客:(.

编辑:

感谢Darren的建议!

以下是我现在正在使用的内容,如果有人感兴趣的话:

首先,根据Darren的建议,我将我的模态视图控制器包装在一个通用的UINavigationController中(它包含它自己的UIToolbar,UINavigationBar,带有标题):

MyCustomViewController *myModalViewController = [[MyModalViewController alloc] init];
[myModalViewController setTitle:@"Foo"];

UINavigationController *modalNavController = [[UINavigationController alloc] initWithRootView:myModalViewController];
[myModalViewController release];

// This is intended to be presented in another view controller class
[self presentModalViewController:modalNavController animated:YES];
[modalNavController release];
Run Code Online (Sandbox Code Playgroud)

然后在我-init的MyModalViewController类的方法中,我有这个:

- (id)init
{
    if (self = [super init]) {
        UIBarButtonItem *backButtonItem = [UIBarButtonItem alloc];
    backButtonItem = [backButtonItem initWithTitle:back
                                                     style:UIBarButtonItemStyleDone
                                                    target:[self navigationController]
                                                    action:@selector(dismissModalViewControllerAnimated:)];
        [[self navigationItem] setRightBarButtonItem:backButtonItem];
        [backButtonItem release];
    }
    return self;
}
Run Code Online (Sandbox Code Playgroud)

这是比以前清洁的解决方案.谢谢.

Dar*_*ren 10

UINavigationController在呈现模态视图时,应将视图控制器包装在通用内:

MyCustomController* myController = [[MyCustomController alloc] init];
editor.title = @"My Title";

UINavigationController* modalController = [[UINavigationController alloc] initWithRootViewController:myController];
[self.navigationController presentModalViewController:modalController animated:YES];

[modalController release];
[myController release];
Run Code Online (Sandbox Code Playgroud)

您的自定义控制器可以在其init方法中指定其工具栏按钮:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        self.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel 
                                                                                               target:self 
                                                                                               action:@selector(doCancel:)] autorelease];
        self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave
                                                                                                target:self 
                                                                                                action:@selector(doSave:)] autorelease];
    }
    return self;
}
Run Code Online (Sandbox Code Playgroud)