hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
//  TWTRComposer.h
//  TwitterKit
//
//  Copyright (c) 2015 Twitter. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 *  Possible values for the <i>result</i> parameter of the completionHandler property.
 */
typedef NS_ENUM(NSInteger, TWTRComposerResult) {
    /**
     *  The composer is dismissed without sending the Tweet (i.e. the user selects Cancel, or the account is unavailable).
     */
    TWTRComposerResultCancelled,
 
    /**
     *  The composer is dismissed and the message is being sent in the background, after the user selects Done.
     */
    TWTRComposerResultDone
};
 
/**
 *  Completion block called when the user finishes composing a Tweet.
 */
typedef void (^TWTRComposerCompletion)(TWTRComposerResult result);
 
/**
 *  The TWTRComposer class presents a view to the user to compose a Tweet.
 */
@interface TWTRComposer : NSObject
 
/**
 *  Sets the initial text for the Tweet composition prior to showing it.
 *
 *  @param text The text to tweet.
 *
 *  @return This will return NO if the receiver has already been presented (and therefore cannot be changed).
 */
- (BOOL)setText:(nullable NSString *)text;
 
/**
 *  Sets an image attachment.
 *
 *  @param image The image to attach.
 *
 *  @return This will return NO if the receiver has already been presented (and therefore cannot be changed).
 */
- (BOOL)setImage:(nullable UIImage *)image;
 
/**
 *  Adds a URL to the contents of the Tweet message.
 *
 *  @param url The URL.
 *
 *  @return This will return NO if the receiver has already been presented (and therefore cannot be changed).
 */
- (BOOL)setURL:(nullable NSURL *)url;
 
/**
 * Presents the composer, with an optional completion handler from the specified view controller.
 * @param fromController The controller in which to present the composer from.
 * @param completion completion The completion handler, which has a single parameter indicating whether the user finished or cancelled the Tweet composition.
 */
- (void)showFromViewController:(UIViewController *)fromController completion:(TWTRComposerCompletion)completion;
 
@end
 
NS_ASSUME_NONNULL_END