- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 PickerView 的上侧添加工具栏,并想在工具栏上动态添加一个 BarButton,在该按钮的单击事件上,我想关闭 Picker 和工具栏,所以请帮助我完成这项任务。 .提前致谢..
最佳答案
您可以通过这种方式创建 UIToolBar 及其按钮 -
UIToolbar * toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0.0f, 324.0f, 320.0f, 44.0f)];
[toolBar setBarStyle:UIBarStyleBlackTranslucent];
UIBarButtonItem *flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
doneBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(dismissPicker:)];
[toolBar setItems:[NSArray arrayWithObjects:flexibleSpace, doneBtn, nil] animated:YES];
[flexibleSpace release];
[editButton release];
您可以添加完成按钮并在点击此按钮时调用方法,在该方法中您可以关闭 UIPickerView。
关于iphone - 如何在UIToolbar上放置barbutton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3289334/
通常,当我们点击 UIBarButtonItem 时,它会突出显示。 但是,我打算向用户表明,当 View 在 4 秒后加载时,该操作会自动为他们完成。 所以我想在不点击按钮的情况下突出显示它。 我怎
一切都很好,直到我呈现一个 uialertcontroller。当我展示它时,barbutton 从它们的位置向下移动。 Before presenting,everything was fine w
在我当前的应用程序中,我有三个 UIViewControllers 并且我正在使用 StoryBoard: ViewController、MenuViewController、CategoriasLi
如何为UIImagePickerController的左右UIBarButton设置自定义字体? 我已经尝试过这段代码,但它不起作用: let imagePicker = UIImagePickerC
我的主窗口在右上角有一个导航栏和一个 BarButton。我有一个保存的值,根据它是真还是假,我想推送到不同的 Controller 。现在推送到一个只是 IB 中的 Ctrl+Drag,但是如果我想
我创建了 4 个带有图像的 BarButtons,当我添加到导航栏时。它显示了项目之间的大间隙以及如何消除图像之间的间隙。 最佳答案 您可以通过像这样维护图像插图来实现此目的:- UIBarButto
我在我的应用中发现了这个问题。 可以同时触摸“BackBarButton”和“rightBarButton”。然后将调用这两个 Action 。 我知道UIView中有“exclusiveTouch”
关闭。这个问题需要details or clarity .目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 9 年前。 Improve t
我有一个 ViewController。应用程序中有一个 NavigationController。当我将 Bar Button Item 拖到导航栏时,该项目通常会到达 ViewController
我正在使用实用程序应用程序的模板。在 FlipSideViewController 中,我为 UINavigationController navController 添加了 IBOutlet。在代码
我有问题,我已经将 UIPickerView BarButton 标题颜色设置为蓝色,但它没有提供完美的输出,但是当我单击该按钮时,它提供了输出意味着它改变了颜色为蓝色,但我不希望只有在单击后才显示蓝
我有一个 UISplitViewController,其中一个 UIViewController 作为主 Controller ,一个 UINavigationController 作为我的细节 Co
我想在主从应用程序模板中使用自定义 UIButton 而不是 BarButton。 请多多指教。 谢谢!! 最佳答案 您可以通过使用 initWithCustomView 在 UIBarButtonI
我有一个包含三个选项卡的 tabBarController。我只想在第一个 ViewController 中将 rightBarButtonItem 显示到导航栏,但是当我回来时我希望它再次可见。如何
我是一名优秀的程序员,十分优秀!