I found this post from about a year ago, which seems to be getting at the same question. Unfortunately, they did not get an answer:
There seems to be an instance method “loadPreviousTweetsBeforePosition:completion:” whose completion block could be used to get the individual tweets from a timeline data source. Here’s the code from TWTRTimelineDataSource.h:
`
/**
*/
- (void)loadPreviousTweetsBeforePosition:(nullable NSString *)position completion:(TWTRLoadTimelineCompletion)completion;
`
Yet, this method is not unable to call it from TWTRDataSource instances (e.g. TWTRUserTimelineDataSource). TWTRTimelineDataSource is a protocol, not a class, but you should be able to call an instance method on any conforming class, so again, I’m confounded.
Any clues would be appreciated. How can you access the tweets inside of a TWTRTimelineDataSource?
Many thanks,
Mike