I have created a subclass of TWTRTimelineViewController, and am putting it on the screen as a childViewController.
It appears to be drawing lines under certain cells:
(Click the expand image button if you can’t see the lines!)
I’m using 3.0.3 via a manual install (no cocoapods)
Here is the code for the twitter view controller:
class TwitterViewController: TWTRTimelineViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
let client = TWTRAPIClient()
self.dataSource = TWTRUserTimelineDataSource(screenName: "LIRR", apiClient: client)
}
}
Any thought on what is causing this? I can’t reproduce this in the simulator, but it does this on the device.