I’ve have a TWTRTweetView in a UITableCell in a storyboard that I have connected to an IBOutlet.
I call it simply, tweetView. In one of my setters, I call:
tweetView.configureWithTweet(tweet)
Where tweet is obviously the tweet.
If the tweet has multiple images, I would like to show that similar to how it is done in the iOS Twitter application, i.e 4 images show up in a grid.
I am grabbing the tweets from the users_timeline REST api call:
let statusesShowEndpoint = "https://api.twitter.com/1.1/statuses/user_timeline.json"
let params = ["screen_name" : twitterUser, "trim_user" : "false", "include_rts" : "true", "include_entities" : "true"]
Currently, it is only showing the first image in the set and that is the only image I see when tapping on it. Is there a setting in the API to return the grid for images?