objc-TimesSquare icon indicating copy to clipboard operation
objc-TimesSquare copied to clipboard

Calendar not rendered

Open javagc opened this issue 10 years ago • 1 comments

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 untitled

javagc avatar May 07 '15 21:05 javagc

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

mohibsheth avatar Oct 06 '15 05:10 mohibsheth