iPad 纵向模式拆分视图 - 弹出按钮标题

发布于 2025-01-06 05:38:34 字数 147 浏览 1 评论 0原文

我只想更改 iPad 拆分视图应用程序中以纵向模式启动 Popover 的按钮的标题(显示主视图)。我一生都无法弄清楚如何引用这个按钮。我通过使用主详细信息应用程序模板(iOS 5 和故事板)创建一个新项目来启动该应用程序,并且大部分界面代码都从故事板文件开始。任何帮助表示赞赏。

I just want to change the title in my iPad split view application of the button that initiates the Popover in portrait mode (showing the master view). I cannot, for the life of me, figure out how to reference this button. I started the application by creating a new project using the master detail application template (iOS 5 and storyboards) and most of the interface code began in the storyboard file. Any help is appreciated.

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

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

发布评论

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

评论(1

一桥轻雨一伞开 2025-01-13 05:38:34

在详细视图中,您会发现分割视图的委托方法,用于在纵向模式下添加新按钮(也可能使用类似的方法 - 但它们都有 UIBarButtonItem* 参数):

-(void)splitViewController:(UISplitViewController *)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem *)barButtonItem forPopoverController:(UIPopoverController *)pc
    {
        barButtonItem.title = @"Your custom title goes here";
        [self.navigationItem setLeftBarButtonItem:barButtonItem animated:YES];
        self.masterPopoverController = pc;
    }

就是这样 -你完成了。

Inside your detail view you'll find a delegate method of your split view wich is for adding the new button in portrait mode (there are also similar methods wich are maybe used - but they all have the UIBarButtonItem* argument):

-(void)splitViewController:(UISplitViewController *)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem *)barButtonItem forPopoverController:(UIPopoverController *)pc
    {
        barButtonItem.title = @"Your custom title goes here";
        [self.navigationItem setLeftBarButtonItem:barButtonItem animated:YES];
        self.masterPopoverController = pc;
    }

And that's it - you're done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文