문제

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

올바른 솔루션이 없습니다

다른 팁

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

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

You can use your own image also, Try this code

UIImage *tile = [UIImage imageWithContentsOfFile:TKBUNDLE(@"ownImage.png")];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top