Hi,
I have twitter 2.0.2 version, and seems is not working with the new method that you have on your tutorials.
For example, with the first below code , it works without a problem, but with the second code it’s not loading data, it just a spinning wheel with tableview’s separate lines.
import UIKit import TwitterKit
class UserTimelineViewController: TWTRTimelineViewController { override func viewDidLoad() { super.viewDidLoad() let client = TWTRAPIClient() self.dataSource = TWTRUserTimelineDataSource(screenName: "fabric", APIClient: client) }
import UIKit import TwitterKit
class UserTimelineViewController: TWTRTimelineViewController { convenience init() { let client = TWTRAPIClient() let dataSource = TWTRUserTimelineDataSource(screenName: "fabric", APIClient: client) self.init(dataSource: dataSource) } }