내 응용 프로그램에 Tapku library
을 사용하고 있습니다. 그것은 나를 위해 잘 작동합니다 ..하지만 내 포인트는 사전Tapku calendar 이벤트 추가
2
A
답변
4
당신은 이미지가 포함 tapku 라이브러리의 번들을 열 수 있습니다 당신은 이미지를 대체 할 수에서 How can I add different Images on different Events on Calendar.
감사합니다.
2
이미지는 다음 위치에 있습니다. "TapkuLibrary.bundle/Images/calendar/Month Calendar Today"또는 경로를 자신의 이미지 중 하나를 가리킬 수 있습니다.
self.selectedImageView.image = [UIImage imageWithContentsOfFile:TKBUNDLE(@"TapkuLibrary.bundle/Images/calendar/Month Calendar Today Selected Tile.png")];
0
당신은 또한 자신의 이미지를 사용할 수 있습니다, 당신은 그 장소 https://github.com/JPluto/tapkulibrary/tree/master/src/TapkuLibrary.bundle/ 뜻이 코드
UIImage *tile = [UIImage imageWithContentsOfFile:TKBUNDLE(@"ownImage.png")];
시도 이미지/캘린더 –