Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以建议我如何在 UIWebView 键盘的工具栏中创建切换按钮,这与编辑笔记时 Evernote 应用程序的功能非常相似。我知道如何在该工具栏中添加按钮。我只想知道如何创建按钮看起来像那样。这可以使用简单的 UISwitch 来实现吗?
这正是我想要实现的。
这可以通过UIButton. 要么在按钮上设置图像,要么UIControlStateSelected在 Interface Builder 中通过更改“选定状态配置”的图像来完成。然后,您可以通过更改按钮的selected属性来切换按钮状态。
UIButton
UIControlStateSelected
selected
前任:
[button setImage:[UIImage imageNamed:@"button_on"] forState:UIControlStateSelected]; button.selected = YES;