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
//
//  TWTRTimelineDelegate.h
//  TwitterKit
//
//  Created by Steven Hepting on 7/25/16.
//  Copyright © 2016 Twitter. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@class TWTRTweet;
@class TWTRTimelineViewController;
 
NS_ASSUME_NONNULL_BEGIN
 
@protocol TWTRTimelineDelegate <NSObject>
 
@optional
 
/**
 *  The Timeline started loading new Tweets. This would be an
 *  appropriate place to begin showing a loading indicator.
 *
 *  @param timeline Timeline controller providing the updates
 */
- (void)timelineDidBeginLoading:(TWTRTimelineViewController *)timeline;
 
/**
 *  The Timeline has finished loading more Tweets.
 *
 *  If Tweets array is `nil`, you should check the error object
 *  for a description of the failure case.
 *
 *  @param timeline Timeline displaying loaded Tweets
 *  @param tweets   Tweet objects loaded from the network
 *  @param error    Error object describing details of failure
 */
- (void)timeline:(TWTRTimelineViewController *)timeline didFinishLoadingTweets:(nullable NSArray *)tweets error:(nullable NSError *)error;
 
@end
 
NS_ASSUME_NONNULL_END