hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
commit | author | age
a0a843 1 //
H 2 //  TWTRUserTimelineDataSource.h
3 //  TwitterKit
4 //
5 //  Copyright (c) 2015 Twitter. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import <TwitterKit/TWTRTimelineDataSource.h>
10
11 @class TWTRAPIClient;
12
13 NS_ASSUME_NONNULL_BEGIN
14
15 /**
16  *  This Timeline Data Source provides a list of Tweets roughly consistent with the list on a Users profile page. The difference is that this data source will filter out Tweets that are direct replies to other users by default.
17  *
18  *  These Tweets are ordered chronologically with the most recent first.
19  */
20 @interface TWTRUserTimelineDataSource : NSObject <TWTRTimelineDataSource>
21
22 /**
23  *  The screen name of the User whose Tweets are being shown. Either the `screenName` or the `userID` are required.
24  */
25 @property (nonatomic, copy, readonly) NSString *screenName;
26
27 /**
28  *  The userID of the User whose Tweets are being shown. Either the `screenName` or the `userID` are required.
29  */
30 @property (nonatomic, copy, readonly) NSString *userID;
31
32 /**
33  *  The number of Tweets to request in each query to the Twitter Timeline API when fetching the next batch of Tweets. Will request 30 Tweets by default. Setting this value to 0 will use the server default.
34  */
35 @property (nonatomic, readonly) NSUInteger maxTweetsPerRequest;
36
37 /**
38  *  Whether to request replies in the set of Tweets from the server.
39  *
40  *  Defaults to NO.
41  */
42 @property (nonatomic, readonly) BOOL includeReplies;
43
44 /**
45  *  Whether to request retweets in the set of Tweets from the server.
46  *
47  *  Defaults to YES.
48  */
49 @property (nonatomic, readonly) BOOL includeRetweets;
50
51 /*
52  *  A filtering object that hides certain tweets.
53  */
54 @property (nonatomic, copy, nullable) TWTRTimelineFilter *timelineFilter;
55
56 /**
57  *  Convenience initializer. Uses default values for `maxTweetsPerRequest`, `includeReplies` and `includeRetweets`.
58  *
59  *  @param screenName The screen name of a Twitter User
60  *  @param client     The API client to use for making network requests.
61  *
62  *  @return A fully initialized user timeline datasource or nil.
63  */
64 - (instancetype)initWithScreenName:(NSString *)screenName APIClient:(TWTRAPIClient *)client;
65
66 /**
67  *  The designated initialzer accepted values for properties.
68  *
69  *  @param userID              The user ID of the Twitter User
70  *  @param screenName          The screen name of the Twitter User
71  *  @param client              The API client to use for making network requests.
72  *  @param maxTweetsPerRequest The number of Tweets per batch to request. A value of 0 will use the server default.
73  *  @param includeReplies      Whether replies should be requested
74  *  @param includeRetweets     Whether retweets should be requested
75  *
76  *  @return A fully initialized user timeline datasource or nil.
77  */
78 - (instancetype)initWithScreenName:(nullable NSString *)screenName userID:(nullable NSString *)userID APIClient:(TWTRAPIClient *)client maxTweetsPerRequest:(NSUInteger)maxTweetsPerRequest includeReplies:(BOOL)includeReplies includeRetweets:(BOOL)includeRetweets NS_DESIGNATED_INITIALIZER;
79
80 - (instancetype)init NS_UNAVAILABLE;
81
82 @end
83
84 NS_ASSUME_NONNULL_END