2

I am using Tapku library in my app. It works fine for me.. but my point is How can I add different Images on different Events on Calendar.

Thanks In Advance

Erik
  • 935
  • 11
  • 28
Arun
  • 2,271
  • 1
  • 14
  • 18

3 Answers3

4

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

Dhara
  • 4,093
  • 2
  • 36
  • 69
  • you mean that place https://github.com/JPluto/tapkulibrary/tree/master/src/TapkuLibrary.bundle/Images/calendar – Mina Fawzy Oct 14 '14 at 09:32
2

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")]; 
Parag Chauhan
  • 35,760
  • 13
  • 86
  • 95
MKJParekh
  • 34,073
  • 11
  • 87
  • 98
0

You can use your own image also, Try this code

UIImage *tile = [UIImage imageWithContentsOfFile:TKBUNDLE(@"ownImage.png")];
Sudhakar
  • 1,517
  • 1
  • 10
  • 22