TWTRComposer クラスではユーザーがツイートを作成するビューを使用できます。
継承元 | NSObject |
宣言場所 | TWTRComposer.h |
TWTRComposer Class ReferenceThe TWTRComposer class presents a view to the user to compose a Tweet.
|
– setText:
– setImage:
– setURL:
– showWithCompletion:
Tasks
|
Instance Methods |
添付画像を設定します。
- (BOOL)setImage:(UIImage *)image
image
添付する画像。
TWTRComposer クラスが既に画面に表示されている場合、戻り値はありません(従って変更は反映されません)。
setImageSets an image attachment. - (BOOL)setImage:(UIImage *)image Parametersimage The image to attach. Return ValueThis will return NO if the receiver has already been presented (and therefore cannot be changed). |
表示される前の状態のツイートcomposition に初期テキストを設定します。
- (BOOL)setText:(NSString *)text
text
ツイートするテキスト。
TWTRComposer クラスが既に画面に表示されている場合、戻り値はありません(従って変更は反映されません)。
setTextSets the initial text for the Tweet composition prior to showing it. - (BOOL)setText:(NSString *)text Parameterstext The text to tweet. Return ValueThis will return NO if the receiver has already been presented (and therefore cannot be changed). |
ツイートメッセージの中にURLを追加します。
- (BOOL)setURL:(NSURL *)url
url
追加するURL.
TWTRComposer クラスが既に画面に表示されている場合、戻り値はありません(従って変更は反映されません)。
setURLAdds a URL to the contents of the Tweet message. - (BOOL)setURL:(NSURL *)url Parametersurl The URL. Return ValueThis will return NO if the receiver has already been presented (and therefore cannot be changed). |
composerを画面に表示します。必要に応じて completion ハンドラも付けます。
- (void)showWithCompletion:(TWTRComposerCompletion)completion
completion
completion ハンドラ。ユーザーがツイートcompositionを終了させたのかキャンセルさせたのかを示すパラメータを一つ持つ。
showWithCompletionPresents the composer, with an optional completion handler. - (void)showWithCompletion:(TWTRComposerCompletion)completion Parameterscompletion The completion handler, which has a single parameter indicating whether the user finished or cancelled the Tweet composition. |