Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wookay/hangulswift
Hangul Automata for Swift
https://github.com/wookay/hangulswift
Last synced: 2 days ago
JSON representation
Hangul Automata for Swift
- Host: GitHub
- URL: https://github.com/wookay/hangulswift
- Owner: wookay
- License: other
- Created: 2016-02-01T03:18:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-03T06:40:39.000Z (over 8 years ago)
- Last Synced: 2024-10-12T08:22:48.598Z (about 1 month ago)
- Language: Swift
- Homepage:
- Size: 3.84 MB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
HangulSwift
===========* Hangul Automata for Sebul Keyboard
https://itunes.apple.com/en/app/id428835384?mt=8[![Build Status](https://api.travis-ci.org/wookay/HangulSwift.svg?branch=master)](https://travis-ci.org/wookay/HangulSwift)
[![Cocoapods Version](https://img.shields.io/cocoapods/v/HangulSwift.svg?style=flat)](https://cocoapods.org/pods/HangulSwift)```sh
$ open App/HangulSwift.xcodeproj
``````swift
let system = HangulInputSystem()
system.input(Jamo(type: .초, sound: "ㄱ"))
XCTAssertEqual("ㄱ", system.text)
system.input(Jamo(type: .중, sound: "ㅏ"))
XCTAssertEqual("가", system.text)
system.input(Jamo(type: .종, sound: "ㅁ"))
XCTAssertEqual("감", system.text)
```