StergRi / Calendar

A fully working calendar with just a view lines of code
9 stars 3 forks source link

Change days of the week to start on Sunday instead of Monday #1

Open wawilliams003 opened 6 years ago

wawilliams003 commented 6 years ago

Hi StergRi, you did a great job creating this calendar. I would like to use your calendar in one of my projects, but I would like the days of the week to start on Sunday instead of Monday. How can I achieve that? Thank you!

StergRi commented 6 years ago

Hello Williams , thank you very much ! I will try to explain you what you need to do using the ViewController.swift file I have on GitHub , First go to the lines 164,166,168 and add "+ 1" in every case , then go to the lines 188, 190, 192 and remove the "+ 1" in the "switch direction" statement , now you have a calendar that starts at one more position right , next you hav to go to the line 202 and change the numbers in the case with 0,6,7,13,14,20,21,27,28,34 , next in the line 209 in the last statement "indexPath.row + 1 - NumberOfEmptyBox == day" remove again the " + 1", last change the labels in the main storyboard to start at Sunday at thats all