Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

SPHTech/OpenCC

 
 

Repository files navigation

OpenCC Pod Spec

Actions Status Version License Platform

The project wraps SwiftyOpenCC by ddddxxx into a CocoaPods spec. You can use Swift Package Manager or Carthage to install SwiftyOpenCC, however, it does not provide a CocoaPods spec, and I want to make my own life easier.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Usage

A quick example:

import OpenCC

var bundle: Bundle? = {
    let openCCBundle = Bundle(for: ChineseConverter.self)
    guard let resourceUrl = openCCBundle.url(forResource: "OpenCCDictionary", withExtension: "bundle") else {
        return nil
    }
    return Bundle(url: resourceUrl)
}()

let str = "鼠标里面的硅二极管坏了,导致光标分辨率降低。"
let converter = try! ChineseConverter(bundle: bundle!, option: [.traditionalize, .TWStandard, .TWIdiom])
converter.convert(str)
// 滑鼠裡面的矽二極體壞了,導致游標解析度降低。

Requirements

  • Latest Xcode
  • iOS 11 or above.
  • macOS 10.13 or above.
  • tvOS 11 or above.

Installation

OpenCC is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'OpenCC'

Author

zonble, [email protected]

License

OpenCC is available under the MIT license. See the LICENSE file for more info.

About

OpenCC Pod Spec

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 46.9%
  • Shell 35.5%
  • Ruby 17.6%