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

TimesSquare is an Objective-C calendar view for your apps.

Results 43 objc-TimesSquare issues
Sort by recently updated
recently updated
newest added

This pull request adds a framework target to support the Carthage dependency manager: https://github.com/Carthage/Carthage . This allows for the automated downloading and building of embedded frameworks for iOS 8, and...

I can't run this app. So, Please give me a proper link.

Hi, Is there a way I can highlight a few dates with a color? Can I customize the cells for the dates in any way? Any help is appreciated. Thank...

I was looking through your sample application and when translating the following code to Swift 3: ``` - (void)scroll; { static BOOL atTop = YES; TSQCalendarView *calendarView = (TSQCalendarView *)self.view;...

Is there a way that I can calculate the frame size of a specific month? I want to be able to only display a month up to the bottom edge...

Is there a way I can set component to start week from Monday? If not then can you please guide me where I need to make changes? Thanks in advance.

This adds a method to the calendar delegate, `-calendarView:shouldDisplayEventMarkerForDate:`, which allows the delegate to specify that a marker should be displayed under the number. ![screen shot 2013-05-10 at 15 11...

how to displayOnly ? Can't select the date, only display dates。 Thanks

how to use self.view addsubview : TSQCalendarView? thanks ;

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...