Reputation: 3
I am trying to make a calendar like a google calendar in which each square has some text (events of the day).
For this, I think I must put a UITableView
inside each UICollectionViewCell
, but I am not accomplishing it. I don’t have a sample code because I don’t even know how to start solving this.
Upvotes: 0
Views: 68
Reputation: 3623
We don't need a UITableView
, we can do it just by using UICollectionView
.
But as you are new to this I suggest using a library JTAppleCalender
.
With this library, you can create a calendar in iOS very easily and it is highly customizable.
List of features:
Github link: https://github.com/patchthecode/JTAppleCalendar
If you think that you don't want to use any library this answer may help you: Custom calender View
Upvotes: 1