将图像命名为导航栏名称

发布于 2024-11-08 23:47:13 字数 306 浏览 0 评论 0 原文

而不是让视图的名称显示在导航栏的中间,而是让图像显示在那里? 这是我的代码

- (void)viewDidLoad {
[super viewDidLoad];

self.title = NSLocalizedString(@"More", @"More Options");

NSMutableArray *array = [[NSArray alloc] initWithObjects:@"Map", @"About", nil];
self.moreArray = array;
[array release];

谢谢

instead of having the name of the view to show up in the middle of the navigation bar, for an image to show up there?
Here's my code

- (void)viewDidLoad {
[super viewDidLoad];

self.title = NSLocalizedString(@"More", @"More Options");

NSMutableArray *array = [[NSArray alloc] initWithObjects:@"Map", @"About", nil];
self.moreArray = array;
[array release];

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百善笑为先 2024-11-15 23:47:13

您可以设置 navigationItem 的 ="nofollow">titleView 属性如下:

UIImage *image = [UIImage imageNamed: @"whatever.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage: image];
imageView.frame = CGRectMake(0,0,224, 44);
self.navigationItem.titleView = imageView;
[imageView release];

You can set the titleView property of the navigationItem like this:

UIImage *image = [UIImage imageNamed: @"whatever.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage: image];
imageView.frame = CGRectMake(0,0,224, 44);
self.navigationItem.titleView = imageView;
[imageView release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文