Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Month view calendar iphone app control for iOS [closed]

I am on the lookout for calendar control for my iPad app that behaves and looks like the calendar iPhone app when its in month view.

Is anyone aware of any controls that are available?

like image 287
TheLearner Avatar asked Apr 08 '11 09:04

TheLearner


2 Answers

Tapku has a nice calendar control

like image 81
rckoenes Avatar answered Sep 21 '22 12:09

rckoenes


@Benjamin Pearson: it seems to me (when browsing through the code) that the Tapku calendar isn't localized. Could you confirm if this assumption is correct? – Wolfgang Schreurs Aug 15 at 8:17

Tapku calendar is almost localized as far as iOS user has localized (non-enlish) device. For iOS simulator you need just change the country and Tapku calendar will change Months and Days of the Week in localized language. But for even better localization u will need to change - (NSString*) monthString in NSDate+TKCategory.m from this:

- (NSString*) monthString{
    NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
    [dateFormatter setDateFormat:@"MMMM"];
    return [dateFormatter stringFromDate:self];
}

to this:

- (NSString*) monthString{
    NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
    [dateFormatter setDateFormat:@"LLLL"];
    return [dateFormatter stringFromDate:self];
}

In other words You just need to change MMMM to LLLL. For Russian it will, for example, change "сентября" into "Сентябрь".

like image 31
Maxim Mikheev Avatar answered Sep 21 '22 12:09

Maxim Mikheev