I'm trying to load user timeline and customize cells, like replacing some text with emojis then display it. The sample code to load user timeline provided by twitter is like this:
override func viewDidLoad() {
super.viewDidLoad()
let client = TWTRAPIClient()
self.dataSource = TWTRUserTimelineDataSource(screenName: "someuser",
apiClient: client)
}
But I could not find any detail about customizing TWTRTweetTableViewCell
while using data source method.