Latest | 0.1.2 |
---|---|
Homepage | https://github.com/jfreyre/JFEMnemo |
License | MIT |
Platforms | ios 6.0, requires ARC |
Authors |
JFEMnemo is an iOS version of the ruby gem rufus-mnemo. It turns integers into japanese sounding words and vice versa (ruby).
Usage
To run the example project, clone the repo, and run pod install
from the Example directory first.
Installation
JFEMnemo is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod "JFEMnemo"
How to use ?
Simply import file
#import 'JFEMnemo.h'
Then call
// 76955 will return haruka
NSString * mnemo = [[JFEMnemo sharedManager] fromInteger:76955];
long result = [[JFEMnemo sharedManager] toInteger:mnemo];
Requirements
iOS 6.0 and later.
Author
Jerome Freyre, [email protected]
License
JFEMnemo is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "JFEMnemo", "version": "0.1.2", "summary": "JFEMnemo is an iOS version of the ruby gem rufus-mnemo.", "description": " With JFEMnemo you can easily turns integers into japanese sounding words and vice versa (ruby).nn exemple:n - 76955 becomes harukan - 141260 becomes kotoban", "homepage": "https://github.com/jfreyre/JFEMnemo", "license": "MIT", "authors": { "Jerome Freyre": "[email protected]" }, "source": { "git": "https://github.com/jfreyre/JFEMnemo.git", "tag": "0.1.2" }, "social_media_url": "https://twitter.com/j_freyre", "platforms": { "ios": "6.0" }, "requires_arc": true, "source_files": "Pod/Classes/**/*" }
Wed, 02 Mar 2016 07:39:03 +0000