GCKUIButton クラス
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
アプリのカスタム状態をサポートする UIButton のサブクラス。
これらの状態をボタンの state プロパティの値と OR 結合して、アプリケーション固有の追加の状態を提供します。画像は、次のようなカスタム ステータスに割り当てることができます。
[button setImage:[UIImage imageNamed:@"myCustomStateImage"]
forState:(UIControlStateStandard | kMyControlStateCustom)];
アプリの状態値には、UIControlStateApplication のビットマスクに設定されているビットのみを使用する必要があります。
- Deprecated:
- GCKUIMultistateButton を使用します。
- 開始:
- 3.0
GCKUIMultistateButton を継承します。
- (void) setImage: |
|
(UIImage *) |
image |
forButtonState: |
|
(NSUInteger) |
buttonState |
|
|
| |
特定のボタン状態に対して表示する画像を設定します。
- Parameters
-
image | The image. |
buttonState | The button state. |
- (UIControlState) applicationState |
|
readwritenonatomicassign |
ボタンの適用状態。
この状態は、ボタンの既存の状態と OR で結合されます。
- (NSUInteger) buttonState |
|
readwritenonatomicassigninherited |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-12-02 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2023-12-02 UTC。"],[[["GCKUIButton is a subclass of UIButton that supports custom application states, allowing developers to assign images to these states for enhanced UI customization."],["This class is deprecated since version 3.0 and developers should use GCKUIMultistateButton instead."],["Application state values should only use bits defined in the UIControlStateApplication bitmask to ensure compatibility and avoid conflicts."],["`setImage:forButtonState:` method allows setting images for specific button states, providing visual feedback to users."],["The `applicationState` property represents the button's current application state, which is ORed with the existing state to combine multiple states."]]],[]]