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 am using Tapku library in my app.its work fine for me..but my point is How can add different Images on different Events on Calendar.

Thanks In Advance

share|improve this question
Accept answer for improve your Accept Rate . – parag Feb 16 '12 at 11:50

3 Answers

You can open the bundle of tapku library which contains images and you can replace the images.

share|improve this answer

The images are found at: "TapkuLibrary.bundle/Images/calendar/Month Calendar Today" or you could make the path point to one of your own images.

 self.selectedImageView.image = [UIImage imageWithContentsOfFile:TKBUNDLE(@"TapkuLibrary.bundle/Images/calendar/Month Calendar Today Selected Tile.png")]; 
share|improve this answer

You can use your own image also, Try this code

UIImage *tile = [UIImage imageWithContentsOfFile:TKBUNDLE(@"ownImage.png")];
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.