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 have just implemented the tapku library calendar into my app. The calendar displays a event list under the calendar. (cell view)

I have it so its shows a date using this code - @"2012-08-09 00:00:00 +0000".

How would i make it so that when the user click on the date above it shows a message like "Your birthday" in the cell below?

I used this to help me with the initial part - http://developinginthedark.com/posts/iphone-tapku-calendar-markers

share|improve this question

1 Answer

If you want to replace "." with any string, you will have to edit the following method TKCalendarView.m:

 - (void) drawTileInRect:(CGRect)r day:(int)day mark:(BOOL)mark font:(UIFont*)f1 font2:(UIFont*)f2{

NSString *str = [NSString stringWithFormat:@"%d",day];


r.size.height -= 2;
[str drawInRect: r
       withFont: f1
  lineBreakMode: UILineBreakModeWordWrap 
      alignment: UITextAlignmentCenter];

if(mark){
    r.size.height = 10;
    r.origin.y += 18;
    // Editing done here .......
    [@"edit" drawInRect: r
            withFont: f2
       lineBreakMode: UILineBreakModeWordWrap 
           alignment: UITextAlignmentCenter];
}

}

Also if you want to enter longer string make sure to decrease the font size of label and other sizing properties of the label. Label here refers to (dot).

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.