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

时间:2009-08-23 23:12:35

标签: iphone objective-c cocoa-touch

现在我在-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];

有没有人有更好的方法呢?我正在使用的感觉就像一个主要的黑客:(。

编辑:

感谢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];

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

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

这是一个很多清洁解决方案。感谢。

2 个答案:

答案 0 :(得分: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];

您的自定义控制器可以在其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;
}

答案 1 :(得分:1)

您应该在items属性

中添加标题

即。

@property(nonatomic, copy) NSArray *items 

其中items为init,标题为

initWithTitle:style:target:action:

请参阅http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIToolbar_Class/Reference/Reference.html#//apple_ref/occ/instp/UIToolbar/items

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIBarButtonItem_Class/Reference/Reference.html#//apple_ref/occ/instm/UIBarButtonItem/initWithTitle:style:target:action:

了解详情。

希望有所帮助

[编辑] 附: UIBarButtonItem也是你添加按钮的地方;-)