Hebrew NSCalendar months are wrong?

Joined
Apr 10, 2015
Messages
1
Reaction score
0
Points
1
Something is odd with Hebrew months when using NSCalendar - I type the following code:

Code:
let hebrewCalendar = NSCalendar(calendarIdentifier: NSCalendarIdentifierHebrew)

let birthOfJesusDateComponents = NSDateComponents()

birthOfJesusDateComponents.year = 3755   //either 5 or 6 B.C. is possible year of His birth, I chose 6

birthOfJesusDateComponents.month = 7     //this is where the problem arises - 15 Tishri (7th month) is His most likely birthday

birthOfJesusDateComponents.day = 15

birthOfJesusDateComponents.hour = 21     //just a guess - sometime at night

birthOfJesusDateComponents.minute = 0

birthOfJesusDateComponents.second = 0

birthOfJesus = hebrewCalendar!.dateFromComponents(birthOfJesusDateComponents)!

Then, elsewhere, I type:

Code:
let hebrew = NSCalendar(calendarIdentifier: NSCalendarIdentifierHebrew)

let formatter = NSDateFormatter()

formatter.calendar = hebrew

formatter.dateStyle = .FullStyle

formatter.timeStyle = .MediumStyle


println(formatter.stringFromDate(birthOfJesus))

And I get as an output:

Friday, 15 Adar 3755 at 21:00:00

But here's the catch, Adar is NOT the 7th month of the Hebrew calendar, Tishri is. At least in the ancient Hebrew calendar. Does the modern Hebrew calendar have a different month order? I'm an amateur Biblical scholar not a modern-day speaker so I don't know the answer to this.
 

chscag

Well-known member
Staff member
Admin
Joined
Jan 23, 2008
Messages
65,248
Reaction score
1,833
Points
113
Location
Keller, Texas
Your Mac's Specs
2017 27" iMac, 10.5" iPad Pro, iPhone 8, iPhone 11, iPhone 12 Mini, Numerous iPods, Monterey
The Hebrew calendar has not changed. See the following link for an explanation of the Hebrew calendar and how it's derived.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top