Skip to main content

Posts

Showing posts from August, 2015

Simple & Custom Calendar View For iOS Apps

Hi All, How about a custom Calendar Month view, where we can customise every thing as per app requirement. Keeping in mind about the complete customisation, the calendar has been designed for a month of the expected date. That is we can get the Calendar month view for the respective date, using this we can design the calendar for years, It supports the Locale,   Using which we can create our own calendar for a year with customised animations & lot more!!! Have a look at the few lines of code making use of  'CalendarView' . VSCalenderView *calendarView = [[ VSCalenderView alloc ] initCalendarViewForMonthOfDate :[ NSDate date ] withFrame : CGRectMake ( 50 , 50 , 250 , 200 )]; calendarView. calendarLocale  = [ NSLocale   localeWithLocaleIdentifier : @"en_US" ]; [ self . view addSubview :calendarView];     NSMutableArray *array = [ NSMutableArray array ]; for ( int i = 1 ; i < 10 ; i++) {         if (i% ...