Library for convert a day to Vietnamese lunar day (Tiếng Việt ở bên dưới)
This library is developed base on Hồ Ngọc Đức's algorithm https://www.informatik.uni-leipzig.de/~duc/amlich/calrules_en.html.
If you're using this library, please help me give a thank to Hồ Ngọc Đức.
This library is released under MIT license, you are free to use or modify it.
- To use in your project, init cocoapods if you haven't yet:
pod init
- Add library to your
podfile
:
pod 'VietnameseLunar'
- Install libaries
pod install
import VietnameseLunar
....
let now = Date()
let vietnameseCalendar = VietnameseCalendar(now)
//This will be display a string, eg: "Mùng 1 Tết Nhâm Dần"
print(vietnameseCalendar.vietnameseDate.toString())
Đây là thư viện để tính toán ngày âm lịch theo lịch Việt Nam
Thư viện này được phát triển dựa trên thuật toán của Hồ Ngọc Đức https://www.informatik.uni-leipzig.de/~duc/amlich/calrules_en.html.
Nếu bạn đang sử dụng thư viện này, xin vui lòng giúp tôi gửi một lời cám ơn đến Hồ Ngọc Đức.
Thư viện này được phát hành dưới giấy phép MIT, do đó bạn có thể tự do sử dụng và chỉnh sửa tuỳ ý.
- Để sử dụng, bạn khởi tạo cocoapods nếu chưa có:
pod init
- Thêm thư viện vào file
podfile
:
pod 'VietnameseLunar'
- Cài đặt thư viện
pod install
import VietnameseLunar
....
let now = Date()
let vietnameseCalendar = VietnameseCalendar(now)
//Dòng này sẽ in ra ngày tương ứng, ví dụ: "Mùng 1 Tết Nhâm Dần"
print(vietnameseCalendar.vietnameseDate.toString())