gpt4 book ai didi

iphone - 如何到达当前 View 的 UIToolbar

转载 作者:行者123 更新时间:2023-12-03 19:14:16 25 4
gpt4 key购买 nike

我有一个基于导航 Controller 的应用程序,并在 viewDidLoad:

中添加了一些带有代码的工具栏项目
NSArray* toolbarItems = [NSArray arrayWithObjects:
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
target:self
action:@selector(addButton)],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace
target:self
action:nil],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCompose
target:self
action:@selector(composeMail)],
nil];
[toolbarItems makeObjectsPerformSelector:@selector(release)];
self.toolbarItems = toolbarItems;

现在我想用[UIActionSheet showFromToolbar:]显示一个actionSheet,并且我想要一个UIToolbar *,我怎样才能获得我之前创建的UIToolbar ?

最佳答案

我假设你的意思是“当前 View Controller 的”。在这种情况下,您需要 self.navigationController.toolbar

关于iphone - 如何到达当前 View 的 UIToolbar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7423233/

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