gpt4 book ai didi

ios - 使用分段控件切换 NavigationItem 标题

转载 作者:行者123 更新时间:2023-11-29 01:39:22 27 4
gpt4 key购买 nike

我有一个导航项和一个导航栏。导航项具有标题(和按钮),导航栏(在导航项下方)具有分段控件。

当按下分段控件的一侧(objective-c)时,如何使导航项上的标题发生变化?

这是 .m 文件中的代码

   if (segmentController.selectedSegmentIndex == 0) {
UIWebView *webview6=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
NSString *url6=@"http://apple.com";
NSURL *nsurl6=[NSURL URLWithString:url6];
NSURLRequest *nsrequest6=[NSURLRequest requestWithURL:nsurl6];
[webview6 loadRequest:nsrequest6];
webview6.scrollView.bounces = NO;
[self.view addSubview:webview6];
[self.view bringSubviewToFront: navbar2];
}
if (segmentController.selectedSegmentIndex == 1) {
UIWebView *webview7=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
NSString *url7=@"http://yahoo.com";
NSURL *nsurl7=[NSURL URLWithString:url7];
NSURLRequest *nsrequest7=[NSURLRequest requestWithURL:nsurl7];
[webview7 loadRequest:nsrequest7];
webview7.scrollView.bounces = NO;
[self.view addSubview:webview7];
[self.view bringSubviewToFront: navbar2];
}

这是它的样子-

enter image description here

最佳答案

使用self.navigationItem.title设置标题。

关于ios - 使用分段控件切换 NavigationItem 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32590915/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com