In my app I would like to present a TableViewController with the Tweets of the persons which the user is following. Is there a way to present this tweets with the TWTRTimelineViewController in Swift?
For presenting the tweets of a specific user I used
let client = TWTRAPIClient() self.dataSource = TWTRUserTimelineDataSource(screenName: "DeveloperHess", APIClient: client)
Everything is fine with that code but is it possible to present this tweets of the users by using another String, for example "zlw-developerhess" ?
And when there isn’t a way to do like this, how is it possible?
Thanks!