如何在不使用 InterfaceBuilder 的情况下将 UISwitch(切换开关)添加到 UIToolBar
如何在不使用 InterfaceBuilder 的情况下将 UISwitch(切换开关)添加到 UIToolBar ? 它不是系统项目,所以我无法使用
UIBarButtonItem *systemItem1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh
target:self
action:@selector(pressButton1:)];
如何以相同的方式添加切换开关?
谢谢。
How can I add UISwitch(toggle switch) to UIToolBar without using InterfaceBuilder ?
It is not a system item, so I could not use
UIBarButtonItem *systemItem1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh
target:self
action:@selector(pressButton1:)];
How can I add the toggle switch in same way ?
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
-initWithCustomView:
将您的开关作为自定义视图。Just use
-initWithCustomView:
with your switch as that custom view.这是我在 swift 应用程序中所做的,我必须在两种不同的显示模式之间切换。
Here is what I did in my swift app, where I had to switch between two different modes of display.