For our current app, if the user has allowed access to Twitter we are able to display a list of tweets that contain tweets for a user and for hashtags. We are interested in using Fabric so that our users can still view tweets without requiring Twitter access up-front. Before we display tweets we are merging, chronologically, tweets from a user and tweets with specific hashtags. We are using the Twitter APIs, which is also possible using Fabric, but according to the documentation requires the user to follow the Twitter login flow.
With the Fabric SDK it is possible to get user timelines and it is possible to perform searches, and the results(from what I can tell) are contained in TWTRCollectionTimelineDataSource, TWTRListTimelineDataSource or TWTRSearchTimelineDataSource however the only way to get access to the tweets is in a TWTRTimelineViewController. None of the dataSource objects seem to allow direct access to tweet objects. This prevents us from merging the two different sets of tweets.