objc-TimesSquare
objc-TimesSquare copied to clipboard
Calendar not rendered
my code is
``TSQCalendarView *aa=[[TSQCalendarView alloc]initWithFrame:self.view.bounds];
aa.firstDate=[NSDate date];
NSDateComponents* comps = [[NSDateComponents alloc]init];
comps.year = 2016;
comps.month = 9;
comps.day = 30;
NSCalendar* calendar = [NSCalendar currentCalendar];
NSDate* date = [calendar dateFromComponents:comps];
aa.pagingEnabled=true;
aa.lastDate=date;
[self.view addSubview:aa];``
View is there

I'm facing a similar problem. Can somebody guide why this might happen?