Swift library for manipulating postal codes.
pod 'ZipCode4s'
github "Taillook/ZipCode4s"
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)
1500043
東京都
トウキョウト
渋谷区
シブヤク
道玄坂
ドウゲンザカ
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request