I have used TKCalendarDayView for showing day events on Specific date but problem is when i put any events on it it always display in current date.
so can anybody help me to sort out this problem using Tapku Library?
Thank you in Advanced.
I have used TKCalendarDayView for showing day events on Specific date but problem is when i put any events on it it always display in current date.
so can anybody help me to sort out this problem using Tapku Library?
Thank you in Advanced.
SOLUTION
There has another way to solve this problem
As you see, in the methods below:
self.datais loaded.Note that, there has no method to add an event to a specific date. But we can add an event like this:
@[@"Meeting with five random dudes", @"Five Guys", @48, @0, @50, @30]in this@48means the event at the day after tomorrow.and
@[@"Unlimited bread rolls got me sprung", @"Olive Garden", @-24, @0, @-22, @0]in this@-24means the event is before today(yesterday).So, first you should calculate the interval between the specific date using following code.
Below code should be commented: