Hello
I’m new on using fabric and swift.
I created a new app with fabric but it shows on the all page. But I want to show it on the table view which I created.
How can I modify it? here is the code :
import UIKit
import TwitterKit
class ViewController: TWTRTimelineViewController {
override func viewDidLoad() {
super.viewDidLoad()
let client = TWTRAPIClient()
self.dataSource = TWTRUserTimelineDataSource(screenName: "koraypekozkay", APIClient: client)
}
}