gpt4 book ai didi

iphone - 自动标签切换

转载 作者:行者123 更新时间:2023-12-03 21:13:34 24 4
gpt4 key购买 nike

我正在使用 UITableView 构建 iPhone 应用程序。选择一行后,网页将加载到下一个选项卡的 UIWebView 中。目前这一切都正常,但是,如何将应用程序设置为自动移至网页已加载到 UIWebView 的选项卡?

是否有某种形式的动画可以滑入下一个选项卡,或者只是一些简单的功能来切换到另一个选项卡?

就代码而言,我在 didSelectRowAtIndexPath 中控制它,目前有:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

NSDictionary * story = [stories objectAtIndex:[indexPath row]];
NSString * storyLink = [NSString stringWithFormat:[story objectForKey:@"link"]];

webview.scalesPageToFit = YES;
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:storyLink]]];


}

再次澄清一下,网页成功加载到下一个选项卡中的 UIWebView“webview”中,但我必须手动单击该选项卡才能看到它。网页加载后,应用程序如何自动移至下一个选项卡,而无需手动单击下一个选项卡?

提前致谢,

本吉

最佳答案

假设您的应用程序只有一个 TabBarView,并且将其设置为 AppDelegate 类中的 IBOutlet,则您只需使用 selectedIndex,如下所示:

myAppDelegate.tabBarController.selectedIndex = 1;

其中 tabBarController 是链接到 MainWindow.XIB 文件中选项卡栏的 IBOutlet。

上面的示例将更改为第二个选项卡(选项卡当然从 0 开始)。

我不相信这种变化是可动画的,但我承认我还没有尝试过!

希望有帮助!

关于iphone - 自动标签切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1164433/

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