rs658726

Results 6 comments of rs658726

@LondonAtlas I'm able to successfully resize my calendar after adding these lines to the viewWillTransition function: ``` DispatchQueue.main.async { self.calendar.viewWillTransition(to: CGSize(width: .zero, height: self.calendar.frame.width), with: coordinator, anchorDate: visibleDates.monthDates.first?.date) } ```

@mansibarodia10057 Add these lines to your cellForItemAt and willDisplay functions: ``` numberFormatter.locale = Locale.current if let dateInteger = Int.parse(from: cellState.text) { cell.dateLabel.text = numberFormatter.string(from: NSNumber(value: dateInteger)) } else { cell.dateLabel.text...

EDIT: Nevermind, @bsweett 's fix did not work for me. I'm still seeing the error which results in a crash: *** Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer...

Hey @rafalwojcik, is your calendar presented in a popover?

2 solutions I can think of: 1 - Try scrolling on viewDidLoad and hiding the calendar on viewWillAppear? 2- Use scrollToDate's completion handler to hide your calendar. In other words,...

Yes, that's it. The 2 most popular iOS calendar libraries support this and it is a highly requested feature. Thank you.