Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've attached the Tapku Calendar to my project. It works great. But I have to add events to my calendar from RSS or JSON data. I didn't see any method in Tabku Lib about this issue.

How can I add events to Tapku Calendar?

share|improve this question

3 Answers

up vote 3 down vote accepted

I've worked with both TapKu and Kal. Honestly, I recommend using Kal over TapKu, because Kal offers callback methods designed to work with loading data from the web. I can't say the same for TapKu.

The TapKu documentation is here, but as you stated, there's no particular way to add data. With TapKu, you basically specify which days to show marks on the calendar, and handle changes to the selected date.

You can find more information about Kal at its Wiki on GitHub.

share|improve this answer
Thank you very much Moshe. I'm going to try Kal. – gultekingokhan Jul 24 '12 at 8:18
Sure. Also, welcome to Stack Overflow. Dont forget to exercise the right to vote and select answers. :-) – Moshe Jul 24 '12 at 9:48
Yes, it is great Lib! But it's hard to import my parsed array to calendar. Can you help me? – gultekingokhan Jul 25 '12 at 8:50
Post some code in a new question. – Moshe Jul 25 '12 at 14:36

You can use this delegate method :

-(NSArray *)calendarMonthView:(TKCalendarMonthView *)monthView marksFromDate:(NSDate *)startDate toDate:(NSDate *)lastDate
{
    // adds marks to the individual dates
    // return an array containing boolean values (YES/NO)
    // whether to mark the date[index];
}
share|improve this answer
1  
Thanks man it tells me how to show marks on specific dates, but can you tell me how can i change the marker to be shown on tile. – iPhone Programmatically Mar 14 at 7:24
Whatcha mean 'on tile' ? sorry, just checked inbox now. – Kyle Emmanuel Apr 10 at 7:03

I'm currently having no issue adding all my current events into the KAL calendar's data source, and changing the marker is very simple also. Although, it may be simple, some changes has to be done to the KAL.bundle file that you should have imported into your project/framework. It contains all the photos used to create KAL's view.

Anyways, you're going to want to go to KAL's directory and under KalTileView.m and it is there where you will find

} else { 
textColor = ........
shadowColor = .......
markerImage = [UIImage imageNamed:@"Kal.bundle/kal_marker.png"];
}

The above code is in the drawRect method.

Modifying the marker is fine.... but I found some difficulties importing several markers so I could randomly choose from the markers to display.... to make the app a little more colorful :P. But nope, didn't work.

Although, you can change the marker to another color if you'd like.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.