Digits の認証フローを開始するボタン。
継承元 | UIButton |
宣言場所 | DGTAuthenticateButton.h |
DGTAuthenticateButtonA button that launches the Digits authentication flow.
|
+ buttonWithAuthenticationCompletion:
digitsAppearance
プロパティ
Tasks
|
ボタンと認証フローの外観を設定します。詳細は DGTAppearance
を参照してください。
@property (nonatomic, copy) DGTAppearance *digitsAppearance
Note: ボタンがウィンドウに追加されてから外観を変更しても効果はありません。外観の変更を目に見えるようにするためには、ボタンをウィンドウから削除して改めて追加してください。
PropertiesdigitsAppearanceSets the appearance of the button and the authentication flow. See @property (nonatomic, copy) DGTAppearance *digitsAppearance Discussion
|
あらかじめ設定されているUIButton
サブクラスを取得します。
このボタンはタップした時にDigits認証フローを開始し、認証が成功もしくは失敗した時に completion
を呼び出します。
+ (instancetype)buttonWithAuthenticationCompletion:(DGTAuthenticationCompletion)completion
completion
成功した場合、completion はセッションオブジェクトを渡されて呼び出されます。ユーザーが認証フローをキャンセルした場合、セッションオブジェクトは
nil
になります。
初期化されたDGTAuthenticateButton
.
内部的には、このボタンは単に[Digits authenticateWithCompletion:]
を呼び出しています。
Class MethodsbuttonWithAuthenticationCompletion:Returns a pre-customized + (instancetype)buttonWithAuthenticationCompletion:(DGTAuthenticationCompletion)completion Parameterscompletion
Return ValueAn initialized DiscussionInternally, this button simply calls |