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?
Tapku has a nice calendar control
@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 "Сентябрь".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With