如何使用相同尺寸的图像替换“带提示的导航栏”? 我在其他应用程序中看到了这一点。我所能做的就是单独更换导航栏而不提示。我想要提示大小,以便我可以放置一个高度标识。
感谢任何资源。
答案 0 :(得分:4)
我希望这适用于你。
self.navigationItem.prompt = @"";
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"YOUR IMAGE NAME"]];
imageView.frame = CGRectMake(self.view.frame.size.width/2, 0, 10, 10); //change height and width accordingly
[self.navigationController.navigationBar addSubview:imageView];
快乐的编码:)