CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

ZipCode4s 1.2.0

ZipCode4s 1.2.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jul 2018
SPMSupports SPM

Maintained by Kazuma Maruo.



ZipCode4s 1.2.0

ZipCode4s

Swift library for manipulating postal codes.

Installation

CocoaPods

pod 'ZipCode4s'

Carthage

github "Taillook/ZipCode4s"

Usage

code

import ZipCode4s
let addrInfo = ZipCode(zipcode: "1500043")

print(addrInfo.zipcode)
print(addrInfo.prefecture)
print(addrInfo.prefectureKana)
print(addrInfo.city)
print(addrInfo.cityKana)
print(addrInfo.town)
print(addrInfo.townKana)

result

1500043
東京都
トウキョウト
渋谷区
シブヤク
道玄坂
ドウゲンザカ

Contribution

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Author

Taillook