项目作者: ashikahmad

项目描述 :
Islamic Prayer (salah) Time calculation written in swift.
高级语言: Swift
项目地址: git://github.com/ashikahmad/PrayerTimes-Swift.git
创建时间: 2015-04-28T09:43:32Z
项目社区:https://github.com/ashikahmad/PrayerTimes-Swift

开源协议:

下载


PrayerTime-Swift

Islamic Prayer (salah) Time calculation written in swift. This prayer time calculation code is mostly converted from Objective C version of similar class from praytimes.org.

What it Does

It calculates prayer times for any date(s) based on:

  • Latitude/Longitude
  • Calculation Method
  • Asr Method (Shafi’i/Hanafi)
  • … and optional higher latitude adjustment

For more information about these calculation methods and how it is obtained, check out fine document at prayertimes.org’s wiki page

How to Use

Just import AKPrayerTime.swift in your project, and:

  1. // Create PrayerKit instance with your latitude/longitude
  2. var prayerKit:AKPrayerTime = AKPrayerTime(lat: 23.810332, lng: 90.4125181)
  3. // Optionally, set your preferred calculation method.
  4. // Default is Muslim World Legue (MWL) method
  5. prayerKit.calculationMethod = .Karachi
  6. // Optionally, set your preferred Asr method.
  7. // Default is Safi'i
  8. prayerKit.asrJuristic = .Hanafi
  9. // Optionally, set your output format.
  10. // You can obviously format it later also
  11. prayerKit.outputFormat = .Time12
  12. // ... and finally, get your times
  13. var times = prayerKit.getPrayerTimes()
  14. // Then, you can use it as
  15. times[.Fajr] // 04:07 am
  16. times[.Sunrise] // 05:27 am
  17. // ...and follow included example and public methods in source for more possibilities!

Basic configurations

Property Options
calculationMethod .MWL ➠ Muslim World League
.ISNA ➠ Islamic Society of North America
.Egypt ➠ Egyptian General Authority of Survey
.Makkah ➠ Umm al-Qura University, Makkah
.Karachi ➠ University of Islamic Science, Karachi
.Tehran ➠ Institute of Geophysics, University of Tehran
.Jafari ➠ Shia Ithna Ashari, Leva Research Institute, Qum
.Custom ➠ Autometically set when parameters are changed manually
asrJuristic .Shafii ➠ As followed by Shafi’i, Maliki, Ja’fari, and Hanbali school
.Hanafi ➠ As followed by Hanafi school

More details will be added soon. Contribution in both source and documentation is most welcome!