-
Notifications
You must be signed in to change notification settings - Fork 815
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From StackOverflow: Show multiple events at JTAppleCalendarView #45
Comments
Just to be clear:
Then you should do this: override func viewDidLoad() {
super.viewDidLoad()
.......
.......
calendarView.allowsMultipleSelection = true
let datesFromServer = [d1, d2, d3]
calendarView.selectDates(datesFromServer)
} This will select all your dates. If this answer does not help you, can you respond and paste your |
Hi @patchthecode |
Ok, I am just a little confused. Let me know which ones below are wrong.
If you need more clarification join me in chat here -> https://gitter.im/patchthecode/JTAppleCalendar because texting here can be maddeningly slow. I'll be available there in 2 and a half hours time (from posting this message) |
It was not for selecting dates, it was for adding subviews to a cell. But i discover that if i call |
Ah. ok. i see now. Cool. man. |
Also, if this lib has helped you in anyway, please leave a start rating :) |
Muneesh_Chauhan
I am implementing JTAppleCalendarView in Swift. How I can show multiple events in Calendar without interaction at Calendar View i.e. Multiple events should be shown on Calendar.
I am getting some date from server. All date should be show at Calendar as Event (ie. selected).
The text was updated successfully, but these errors were encountered: