2

So i was trying to make the calendar display 2 month at the same time and have vertical scrolling.

it display 2 month at the same tim

How to do that in Swift?

Ariel Gemilang
  • 796
  • 2
  • 20
  • 42
  • Might check GitHub for some frameworks laying around. This one looks pretty easy to drop 2 of them into a `UIViewController` in a `UIStackView` or something like that. https://github.com/WenchaoD/FSCalendar – Adrian Jun 01 '17 at 03:27
  • Not sure about FSCalendar, but its pretty easy to do with [This One](https://github.com/patchthecode/JTAppleCalendar) – swift nub Jun 01 '17 at 07:37

1 Answers1

15

Using FSCalendar,

 calendar.scrollDirection = .vertical
 calendar.pagingEnabled = false
Neethu M
  • 644
  • 6
  • 11