Daisy Ramos
Daisy Ramos
Yes using Autolayout I set the constraints to (0, 64, 414, 383)
Ok I tried `var calendarView: NWCalendarView = NWCalendarView()` it looks like the calendar isn't populated
Yes I have this as well
This is how I've declared it programatically: `var calendarView: NWCalendarView = NWCalendarView()` `calendarView.frame = CGRectMake(0, 64, 414, 383)` `view.addSubview(calendarView)` The example works fine, it does seem to be an autolayout...
Actually I reverted back to using the calendar through IBOutlet and disabled autolayout for this view `calendarView.translatesAutoresizingMaskIntoConstraints = true` doesn't seem to solve it :(