completionHandler の resultパラメータとして、設定されうる値。
宣言場所 | TWTRComposer.h |
TWTRComposerResult ConstantsPossible values for the result parameter of the completionHandler property.
|
TWTRComposerResult |
typedef NS_ENUM(NSInteger, TWTRComposerResult ) { TWTRComposerResultCancelled, TWTRComposerResultDone, };
Definitiontypedef NS_ENUM(NSInteger, TWTRComposerResult ) { TWTRComposerResultCancelled, TWTRComposerResultDone, }; |
TWTRComposerResultCancelled
この composer はツイートを送信せずに終了された (すなわち、ユーザーがキャンセルを選んだりアカウントが使用できなかった場合)。
TWTRComposerResultDone
この composer は終了され、終了後にバッググラウンドでメッセージが送信されている。
Constants
The composer is dismissed without sending the Tweet (i.e. the user selects Cancel, or the account is unavailable).
The composer is dismissed and the message is being sent in the background, after the user selects Done. |