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.
誰かが、ノートを編集するときにEvernoteアプリケーションが持っているものと非常によく似たUIWebViewキーボードのツールバーにトグルボタンを作成する方法を教えてもらえますか?そのツールバーにボタンを追加する方法を知っています。そのようなボタンを作成する方法を知りたいだけです。これは、単純なUISwitchを使用して実現できますか?
これがまさに私が達成したいことです。
これは で実現できますUIButton。ボタンに画像を設定するかUIControlStateSelected、Interface Builder で「選択された状態の構成」の画像を変更して設定します。selected次に、ボタンのプロパティを変更して、ボタンの状態を切り替えることができます。
UIButton
UIControlStateSelected
selected
元:
[button setImage:[UIImage imageNamed:@"button_on"] forState:UIControlStateSelected]; button.selected = YES;