Doctor

Results 3 comments of Doctor

More information, I added a print(visibleDates) check to see the full data being pulled and confirm no indates array is pulling on the months in question: `DateSegmentInfo(indates: [], monthDates: [(date:...

Update: been investigating this and it appears to be caused by iOS 11 changing how tableview estimated heights are handled. If I figure out a fix, will post it.

Problem solved: Remove the sizing from viewDidLoad and add them in viewWillAppear: ``` override func viewWillAppear(_ animated: Bool) { tableView.estimatedRowHeight = 75 tableView.rowHeight = UITableViewAutomaticDimension tableView.estimatedSectionFooterHeight = 75 tableView.sectionFooterHeight =...