Created
November 15, 2018 12:58
-
-
Save gmoraleda/54297b503524b429d23493c4951b1204 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func getStartOffset(for event: CalendarEvent) -> CGFloat { | |
return gridView.getOffsetForDate(date: event.startDate) | |
} | |
func getHeight(for event: CalendarEvent) -> CGFloat { | |
let height = gridView.getOffsetForDate(date: event.endDate) - gridView.getOffsetForDate(date: event.startDate) | |
return height > Sizes.minEventHeight ? height : Sizes.minEventHeight | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment