Arun
Arun

Reputation: 2281

Tapku calendar Add Events

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

Upvotes: 2

Views: 1399

Answers (3)

Sudhakar
Sudhakar

Reputation: 1517

You can use your own image also, Try this code

UIImage *tile = [UIImage imageWithContentsOfFile:TKBUNDLE(@"ownImage.png")];

Upvotes: 0

MKJParekh
MKJParekh

Reputation: 34291

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")]; 

Upvotes: 2

Dhara
Dhara

Reputation: 4089

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

Upvotes: 4

Related Questions