├── .gitignore ├── LICENSE.md ├── Privacy Policy.md ├── Privacy Policy2.md ├── README.md └── iRime ├── .DS_Store ├── AGEmojiKeyboard ├── AGEmojiKeyBoardView.h ├── AGEmojiKeyBoardView.m ├── AGEmojiPageView.h ├── AGEmojiPageView.m └── EmojisList.plist ├── FileManger ├── FileManger.h ├── FileManger.m ├── PlaySound.h └── PlaySound.m ├── Header.h ├── Keyboard ├── .DS_Store ├── Info.plist ├── Keyboard.entitlements ├── RimeWrapeper │ ├── .DS_Store │ ├── Source │ │ ├── NSString+UTF8Utils.h │ │ ├── NSString+UTF8Utils.m │ │ ├── RimeTypeDef.h │ │ ├── RimeTypeDef.m │ │ ├── RimeWrapper.h │ │ ├── RimeWrapper.m │ │ └── keysymdef.h │ └── include │ │ ├── rime_api.h │ │ └── rime_levers_api.h ├── SVProgressHUD │ ├── SVIndefiniteAnimatedView.h │ ├── SVIndefiniteAnimatedView.m │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ ├── SVProgressHUD.h │ └── SVProgressHUD.m ├── ZipArchive │ └── .DS_Store ├── keysound │ └── default.caf └── tasty-imitation-keyboard │ ├── .DS_Store │ ├── Controller │ ├── ForwardingView.swift │ ├── KeyboardInputTraits.swift │ ├── KeyboardLayout.swift │ └── KeyboardViewController.swift │ ├── Demo │ ├── .DS_Store │ ├── CandidateModel.swift │ ├── Catboard.swift │ ├── CatboardBanner.swift │ ├── DeployView.swift │ ├── EmojiView.swift │ ├── ToolsView.swift │ ├── iRNumberBoard │ │ └── View │ │ │ ├── iRNumberBoardCentreKeysView.swift │ │ │ ├── iRNumberBoardFatherView.swift │ │ │ ├── iRNumberBoardLeftKeysView.swift │ │ │ └── iRNumberBoardRightKeysView.swift │ └── spi │ │ ├── .DS_Store │ │ ├── CandidateCell.swift │ │ ├── CandidateTableCellTableViewCell.swift │ │ ├── CandidatesBanner.swift │ │ ├── Logger.swift │ │ ├── MyCollectionViewFlowLayout.swift │ │ ├── StringExtension.swift │ │ ├── TypingLabel.swift │ │ └── res │ │ ├── .DS_Store │ │ ├── arrow-down-black.pdf │ │ ├── arrow-down-white.pdf │ │ ├── arrow-up-black.pdf │ │ └── arrow-up-white.pdf │ ├── Model │ ├── DefaultKeyboard.swift │ ├── DirectionEnum.swift │ └── KeyboardModel.swift │ ├── Utility │ └── Utilities.swift │ └── Views │ ├── DefaultSettings.swift │ ├── DefaultSettings.xib │ ├── ExtraView.swift │ ├── ImageKey.swift │ ├── KeyboardConnector.swift │ ├── KeyboardKey.swift │ ├── KeyboardKeyBackground.swift │ └── Shapes.swift ├── NSString+Path.h ├── NSString+Path.m ├── Podfile ├── Podfile.lock ├── Pods ├── .DS_Store ├── AFWebViewController │ ├── AFWebViewController │ │ ├── AFModalWebViewController.h │ │ ├── AFModalWebViewController.m │ │ ├── AFWebViewController.bundle │ │ │ ├── Back.png │ │ │ ├── Back@2x.png │ │ │ ├── Back@3x.png │ │ │ ├── Forward.png │ │ │ ├── Forward@2x.png │ │ │ └── Forward@3x.png │ │ ├── AFWebViewController.h │ │ └── AFWebViewController.m │ ├── LICENSE │ └── README.md ├── AGEmojiKeyboard │ ├── AGEmojiKeyboard │ │ ├── AGEmojiKeyBoardView.h │ │ ├── AGEmojiKeyBoardView.m │ │ ├── AGEmojiPageView.h │ │ └── AGEmojiPageView.m │ ├── LICENSE │ ├── README.md │ └── Resources │ │ └── EmojisList.plist ├── ARChromeActivity │ ├── ARChromeActivity │ │ ├── ARChromeActivity.h │ │ ├── ARChromeActivity.m │ │ ├── ARChromeActivity.png │ │ ├── ARChromeActivity@2x.png │ │ ├── ARChromeActivity@2x~ipad.png │ │ ├── ARChromeActivity@3x.png │ │ ├── ARChromeActivity@3x~ipad.png │ │ └── ARChromeActivity~ipad.png │ ├── LICENSE │ └── readme.md ├── CocoaLumberjack │ ├── Classes │ │ ├── CocoaLumberjack.h │ │ ├── CocoaLumberjack.swift │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogCapture.m │ │ ├── DDASLLogger.h │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDAssertMacros.h │ │ ├── DDFileLogger.h │ │ ├── DDFileLogger.m │ │ ├── DDLegacyMacros.h │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLog.m │ │ ├── DDLogMacros.h │ │ ├── DDTTYLogger.h │ │ ├── DDTTYLogger.m │ │ └── Extensions │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDContextFilterLogFormatter.m │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.m │ │ │ ├── DDMultiFormatter.h │ │ │ └── DDMultiFormatter.m │ ├── Framework │ │ └── Lumberjack │ │ │ └── CocoaLumberjack.modulemap │ ├── LICENSE.txt │ └── README.md ├── GCDWebServer │ ├── GCDWebServer │ │ ├── Core │ │ │ ├── GCDWebServer.h │ │ │ ├── GCDWebServer.m │ │ │ ├── GCDWebServerConnection.h │ │ │ ├── GCDWebServerConnection.m │ │ │ ├── GCDWebServerFunctions.h │ │ │ ├── GCDWebServerFunctions.m │ │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ │ ├── GCDWebServerPrivate.h │ │ │ ├── GCDWebServerRequest.h │ │ │ ├── GCDWebServerRequest.m │ │ │ ├── GCDWebServerResponse.h │ │ │ └── GCDWebServerResponse.m │ │ ├── Requests │ │ │ ├── GCDWebServerDataRequest.h │ │ │ ├── GCDWebServerDataRequest.m │ │ │ ├── GCDWebServerFileRequest.h │ │ │ ├── GCDWebServerFileRequest.m │ │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ │ ├── GCDWebServerMultiPartFormRequest.m │ │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ │ └── GCDWebServerURLEncodedFormRequest.m │ │ └── Responses │ │ │ ├── GCDWebServerDataResponse.h │ │ │ ├── GCDWebServerDataResponse.m │ │ │ ├── GCDWebServerErrorResponse.h │ │ │ ├── GCDWebServerErrorResponse.m │ │ │ ├── GCDWebServerFileResponse.h │ │ │ ├── GCDWebServerFileResponse.m │ │ │ ├── GCDWebServerStreamedResponse.h │ │ │ └── GCDWebServerStreamedResponse.m │ ├── GCDWebUploader │ │ ├── GCDWebUploader.bundle │ │ │ ├── Info.plist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── index.css │ │ │ │ └── jquery.fileupload.css │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── index.js │ │ │ │ ├── jquery.fileupload.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ ├── respond.min.js │ │ │ │ └── tmpl.min.js │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ ├── GCDWebUploader.h │ │ └── GCDWebUploader.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── AFWebViewController │ │ │ ├── AFModalWebViewController.h │ │ │ └── AFWebViewController.h │ │ ├── AGEmojiKeyboard │ │ │ ├── AGEmojiKeyBoardView.h │ │ │ └── AGEmojiPageView.h │ │ ├── ARChromeActivity │ │ │ └── ARChromeActivity.h │ │ ├── CocoaLumberjack │ │ │ ├── CocoaLumberjack.h │ │ │ ├── DDASLLogCapture.h │ │ │ ├── DDASLLogger.h │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDAssertMacros.h │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLegacyMacros.h │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDLogMacros.h │ │ │ ├── DDMultiFormatter.h │ │ │ └── DDTTYLogger.h │ │ ├── GCDWebServer │ │ │ ├── GCDWebServer.h │ │ │ ├── GCDWebServerConnection.h │ │ │ ├── GCDWebServerDataRequest.h │ │ │ ├── GCDWebServerDataResponse.h │ │ │ ├── GCDWebServerErrorResponse.h │ │ │ ├── GCDWebServerFileRequest.h │ │ │ ├── GCDWebServerFileResponse.h │ │ │ ├── GCDWebServerFunctions.h │ │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ │ ├── GCDWebServerPrivate.h │ │ │ ├── GCDWebServerRequest.h │ │ │ ├── GCDWebServerResponse.h │ │ │ ├── GCDWebServerStreamedResponse.h │ │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ │ └── GCDWebUploader.h │ │ ├── InAppSettingsKit │ │ │ ├── IASKAppSettingsViewController.h │ │ │ ├── IASKAppSettingsWebViewController.h │ │ │ ├── IASKMultipleValueSelection.h │ │ │ ├── IASKPSSliderSpecifierViewCell.h │ │ │ ├── IASKPSTextFieldSpecifierViewCell.h │ │ │ ├── IASKSettingsReader.h │ │ │ ├── IASKSettingsStore.h │ │ │ ├── IASKSettingsStoreFile.h │ │ │ ├── IASKSettingsStoreUserDefaults.h │ │ │ ├── IASKSlider.h │ │ │ ├── IASKSpecifier.h │ │ │ ├── IASKSpecifierValuesViewController.h │ │ │ ├── IASKSwitch.h │ │ │ ├── IASKTextField.h │ │ │ ├── IASKTextView.h │ │ │ ├── IASKTextViewCell.h │ │ │ └── IASKViewController.h │ │ ├── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── NSBundle+MJRefresh.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── Reachability │ │ │ └── Reachability.h │ │ ├── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ └── SVProgressHUD.h │ │ ├── TUSafariActivity │ │ │ └── TUSafariActivity.h │ │ ├── UIAlertView+Blocks │ │ │ └── UIAlertView+Blocks.h │ │ └── ZipArchive │ │ │ ├── ZipArchive.h │ │ │ ├── crypt.h │ │ │ ├── ioapi.h │ │ │ ├── mztools.h │ │ │ ├── unzip.h │ │ │ └── zip.h │ └── Public │ │ ├── AFWebViewController │ │ ├── AFModalWebViewController.h │ │ └── AFWebViewController.h │ │ ├── AGEmojiKeyboard │ │ ├── AGEmojiKeyBoardView.h │ │ └── AGEmojiPageView.h │ │ ├── ARChromeActivity │ │ └── ARChromeActivity.h │ │ ├── CocoaLumberjack │ │ ├── CocoaLumberjack.h │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogger.h │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAssertMacros.h │ │ ├── DDContextFilterLogFormatter.h │ │ ├── DDDispatchQueueLogFormatter.h │ │ ├── DDFileLogger.h │ │ ├── DDLegacyMacros.h │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLogMacros.h │ │ ├── DDMultiFormatter.h │ │ └── DDTTYLogger.h │ │ ├── GCDWebServer │ │ ├── GCDWebServer.h │ │ ├── GCDWebServerConnection.h │ │ ├── GCDWebServerDataRequest.h │ │ ├── GCDWebServerDataResponse.h │ │ ├── GCDWebServerErrorResponse.h │ │ ├── GCDWebServerFileRequest.h │ │ ├── GCDWebServerFileResponse.h │ │ ├── GCDWebServerFunctions.h │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ ├── GCDWebServerRequest.h │ │ ├── GCDWebServerResponse.h │ │ ├── GCDWebServerStreamedResponse.h │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ └── GCDWebUploader.h │ │ ├── InAppSettingsKit │ │ ├── IASKAppSettingsViewController.h │ │ ├── IASKAppSettingsWebViewController.h │ │ ├── IASKMultipleValueSelection.h │ │ ├── IASKPSSliderSpecifierViewCell.h │ │ ├── IASKPSTextFieldSpecifierViewCell.h │ │ ├── IASKSettingsReader.h │ │ ├── IASKSettingsStore.h │ │ ├── IASKSettingsStoreFile.h │ │ ├── IASKSettingsStoreUserDefaults.h │ │ ├── IASKSlider.h │ │ ├── IASKSpecifier.h │ │ ├── IASKSpecifierValuesViewController.h │ │ ├── IASKSwitch.h │ │ ├── IASKTextField.h │ │ ├── IASKTextView.h │ │ ├── IASKTextViewCell.h │ │ └── IASKViewController.h │ │ ├── MJRefresh │ │ ├── MJRefresh.h │ │ ├── MJRefreshAutoFooter.h │ │ ├── MJRefreshAutoGifFooter.h │ │ ├── MJRefreshAutoNormalFooter.h │ │ ├── MJRefreshAutoStateFooter.h │ │ ├── MJRefreshBackFooter.h │ │ ├── MJRefreshBackGifFooter.h │ │ ├── MJRefreshBackNormalFooter.h │ │ ├── MJRefreshBackStateFooter.h │ │ ├── MJRefreshComponent.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshFooter.h │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshHeader.h │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshStateHeader.h │ │ ├── NSBundle+MJRefresh.h │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJRefresh.h │ │ └── UIView+MJExtension.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── Reachability │ │ └── Reachability.h │ │ ├── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ └── SVProgressHUD.h │ │ ├── TUSafariActivity │ │ └── TUSafariActivity.h │ │ ├── UIAlertView+Blocks │ │ └── UIAlertView+Blocks.h │ │ ├── UMengAnalytics │ │ └── UMMobClick │ │ │ ├── MobClick.h │ │ │ ├── MobClickGameAnalytics.h │ │ │ └── MobClickSocialAnalytics.h │ │ └── ZipArchive │ │ └── ZipArchive.h ├── InAppSettingsKit │ ├── InAppSettingsKit │ │ ├── Controllers │ │ │ ├── IASKAppSettingsViewController.h │ │ │ ├── IASKAppSettingsViewController.m │ │ │ ├── IASKAppSettingsWebViewController.h │ │ │ ├── IASKAppSettingsWebViewController.m │ │ │ ├── IASKMultipleValueSelection.h │ │ │ ├── IASKMultipleValueSelection.m │ │ │ ├── IASKSpecifierValuesViewController.h │ │ │ ├── IASKSpecifierValuesViewController.m │ │ │ └── IASKViewController.h │ │ ├── Models │ │ │ ├── IASKSettingsReader.h │ │ │ ├── IASKSettingsReader.m │ │ │ ├── IASKSettingsStore.h │ │ │ ├── IASKSettingsStore.m │ │ │ ├── IASKSettingsStoreFile.h │ │ │ ├── IASKSettingsStoreFile.m │ │ │ ├── IASKSettingsStoreUserDefaults.h │ │ │ ├── IASKSettingsStoreUserDefaults.m │ │ │ ├── IASKSpecifier.h │ │ │ └── IASKSpecifier.m │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── de.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── el.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── en.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── es.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── it.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── pt.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ ├── th.lproj │ │ │ │ └── IASKLocalizable.strings │ │ │ └── tr.lproj │ │ │ │ └── IASKLocalizable.strings │ │ └── Views │ │ │ ├── IASKPSSliderSpecifierViewCell.h │ │ │ ├── IASKPSSliderSpecifierViewCell.m │ │ │ ├── IASKPSTextFieldSpecifierViewCell.h │ │ │ ├── IASKPSTextFieldSpecifierViewCell.m │ │ │ ├── IASKSlider.h │ │ │ ├── IASKSlider.m │ │ │ ├── IASKSwitch.h │ │ │ ├── IASKSwitch.m │ │ │ ├── IASKTextField.h │ │ │ ├── IASKTextField.m │ │ │ ├── IASKTextView.h │ │ │ ├── IASKTextView.m │ │ │ ├── IASKTextViewCell.h │ │ │ └── IASKTextViewCell.m │ ├── LICENSE │ └── README.md ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ ├── arrow@2x.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── NSBundle+MJRefresh.h │ │ ├── NSBundle+MJRefresh.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── jimmy54.xcuserdatad │ │ └── xcschemes │ │ ├── AFWebViewController.xcscheme │ │ ├── AGEmojiKeyboard.xcscheme │ │ ├── ARChromeActivity.xcscheme │ │ ├── CocoaLumberjack.xcscheme │ │ ├── GCDWebServer.xcscheme │ │ ├── InAppSettingsKit-InAppSettingsKit.xcscheme │ │ ├── InAppSettingsKit.xcscheme │ │ ├── MJRefresh.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-Keyboard.xcscheme │ │ ├── Pods-iRime.xcscheme │ │ ├── Reachability.xcscheme │ │ ├── SVProgressHUD.xcscheme │ │ ├── TUSafariActivity-TUSafariActivity.xcscheme │ │ ├── TUSafariActivity.xcscheme │ │ ├── UIAlertView+Blocks.xcscheme │ │ ├── ZipArchive.xcscheme │ │ └── xcschememanagement.plist ├── Reachability │ ├── LICENCE.txt │ ├── README.md │ ├── Reachability.h │ └── Reachability.m ├── SVProgressHUD │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ └── SVProgressHUD.m ├── TUSafariActivity │ ├── LICENSE.md │ ├── Pod │ │ ├── Assets │ │ │ ├── cs.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── de.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── en.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── es.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── eu.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── fi.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── fr.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── it.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── ja.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── ko.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── nl.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── no.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── pl.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── pt.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── ru.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── safari-7.png │ │ │ ├── safari-7@2x.png │ │ │ ├── safari-7@3x.png │ │ │ ├── safari-7~iPad.png │ │ │ ├── safari-7~iPad@2x.png │ │ │ ├── safari.png │ │ │ ├── safari@2x.png │ │ │ ├── safari@3x.png │ │ │ ├── safari~iPad.png │ │ │ ├── safari~iPad@2x.png │ │ │ ├── sk.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── sv.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── vi.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ └── zh_CN.lproj │ │ │ │ └── TUSafariActivity.strings │ │ └── Classes │ │ │ ├── TUSafariActivity.h │ │ │ └── TUSafariActivity.m │ └── README.md ├── Target Support Files │ ├── AFWebViewController │ │ ├── AFWebViewController-dummy.m │ │ ├── AFWebViewController-prefix.pch │ │ └── AFWebViewController.xcconfig │ ├── AGEmojiKeyboard │ │ ├── AGEmojiKeyboard-dummy.m │ │ ├── AGEmojiKeyboard-prefix.pch │ │ └── AGEmojiKeyboard.xcconfig │ ├── ARChromeActivity │ │ ├── ARChromeActivity-dummy.m │ │ ├── ARChromeActivity-prefix.pch │ │ └── ARChromeActivity.xcconfig │ ├── CocoaLumberjack │ │ ├── CocoaLumberjack-dummy.m │ │ ├── CocoaLumberjack-prefix.pch │ │ └── CocoaLumberjack.xcconfig │ ├── GCDWebServer │ │ ├── GCDWebServer-dummy.m │ │ ├── GCDWebServer-prefix.pch │ │ └── GCDWebServer.xcconfig │ ├── InAppSettingsKit │ │ ├── InAppSettingsKit-dummy.m │ │ ├── InAppSettingsKit-prefix.pch │ │ ├── InAppSettingsKit.xcconfig │ │ └── ResourceBundle-InAppSettingsKit-Info.plist │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── Pods-Keyboard │ │ ├── Pods-Keyboard-acknowledgements.markdown │ │ ├── Pods-Keyboard-acknowledgements.plist │ │ ├── Pods-Keyboard-dummy.m │ │ ├── Pods-Keyboard-resources.sh │ │ ├── Pods-Keyboard.debug.xcconfig │ │ └── Pods-Keyboard.release.xcconfig │ ├── Pods-iRime │ │ ├── Pods-iRime-acknowledgements.markdown │ │ ├── Pods-iRime-acknowledgements.plist │ │ ├── Pods-iRime-dummy.m │ │ ├── Pods-iRime-frameworks.sh │ │ ├── Pods-iRime-resources.sh │ │ ├── Pods-iRime.debug.xcconfig │ │ └── Pods-iRime.release.xcconfig │ ├── Reachability │ │ ├── Reachability-dummy.m │ │ ├── Reachability-prefix.pch │ │ └── Reachability.xcconfig │ ├── SVProgressHUD │ │ ├── SVProgressHUD-dummy.m │ │ ├── SVProgressHUD-prefix.pch │ │ └── SVProgressHUD.xcconfig │ ├── TUSafariActivity │ │ ├── ResourceBundle-TUSafariActivity-Info.plist │ │ ├── TUSafariActivity-dummy.m │ │ ├── TUSafariActivity-prefix.pch │ │ └── TUSafariActivity.xcconfig │ ├── UIAlertView+Blocks │ │ ├── UIAlertView+Blocks-dummy.m │ │ ├── UIAlertView+Blocks-prefix.pch │ │ └── UIAlertView+Blocks.xcconfig │ └── ZipArchive │ │ ├── ZipArchive-dummy.m │ │ ├── ZipArchive-prefix.pch │ │ └── ZipArchive.xcconfig ├── UIAlertView+Blocks │ ├── LICENSE │ ├── README.md │ ├── UIAlertView+Blocks.h │ └── UIAlertView+Blocks.m ├── UMengAnalytics │ └── umsdk_IOS_analyics_idfa_v4.1.10 │ │ └── UMMobClick.framework │ │ ├── Headers │ │ ├── UMMobClick │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── MobClick.h │ │ │ ├── MobClickGameAnalytics.h │ │ │ └── MobClickSocialAnalytics.h │ │ └── UMMobClick │ │ └── Current └── ZipArchive │ ├── LICENSE │ ├── README.md │ ├── ZipArchive.h │ ├── ZipArchive.m │ └── minizip │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── Setting ├── .DS_Store ├── RimeKit │ ├── RimeConfigAppOption.h │ ├── RimeConfigAppOption.m │ ├── RimeConfigController.h │ ├── RimeConfigController.m │ ├── RimeConfigError.h │ ├── RimeConfigError.m │ ├── RimeConfigSchema.h │ ├── RimeConfigSchema.m │ ├── RimeConstants.h │ ├── RimeKey.h │ ├── RimeKey.m │ ├── RimeKeyCodeTransformer.h │ ├── RimeKeyCodeTransformer.mm │ ├── RimeKeyOSXConstants.h │ ├── RimeKitConfig.h │ ├── RimeKitConfig.m │ ├── RimeModifierFlagTransformer.h │ ├── RimeModifierFlagTransformer.mm │ ├── key_table.cc │ └── key_table.h ├── SHKit │ ├── MacOS │ │ ├── NSArray+SHExtensions.h │ │ ├── NSArray+SHExtensions.m │ │ ├── NSColor+SHExtensions.h │ │ ├── NSColor+SHExtensions.m │ │ ├── NSDictionary+SHExtensions.h │ │ ├── NSDictionary+SHExtensions.m │ │ ├── SHKit.h │ │ └── SHKit.m │ ├── NSDictionary+KeyPath.h │ ├── NSDictionary+KeyPath.m │ ├── NSObject+DeepMutableCopy.h │ ├── NSObject+DeepMutableCopy.m │ ├── NSString+SHExtensions.h │ ├── NSString+SHExtensions.m │ ├── README.md │ ├── SHFoundation.h │ ├── SHFoundation.m │ └── iOS │ │ ├── SHNavigationBarTitleView.h │ │ ├── SHNavigationBarTitleView.m │ │ ├── SHTabBarController.h │ │ ├── SHTabBarController.m │ │ ├── SHUIKit.h │ │ ├── SHUIKit.m │ │ ├── UINavigationBar+BackgroundImage.h │ │ ├── UINavigationBar+BackgroundImage.m │ │ ├── UIViewController+SHExtensions.h │ │ └── UIViewController+SHExtensions.m ├── X11 │ ├── keysym.h │ └── keysymdef.h └── YACYAML │ ├── LICENSE │ ├── ReadMe.md │ ├── ToDo.txt │ ├── YACYAML.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── jimmy54.xcuserdatad │ │ └── xcschemes │ │ ├── YACYAML.xcscheme │ │ ├── YACYAMLTests.xcscheme │ │ ├── libYAML.xcscheme │ │ └── xcschememanagement.plist │ ├── YACYAML │ ├── Archiving │ │ ├── YACYAMLArchivingExtensions.h │ │ ├── YACYAMLArchivingExtensions.m │ │ ├── YACYAMLArchivingObject.h │ │ ├── YACYAMLArchivingObject.m │ │ ├── YACYAMLKeyedArchiver.h │ │ ├── YACYAMLKeyedArchiver.m │ │ └── YACYAMLKeyedArchiver_Package.h │ ├── Unarchiving │ │ ├── YACYAMLKeyedUnarchiver.h │ │ ├── YACYAMLKeyedUnarchiver.m │ │ ├── YACYAMLKeyedUnarchiver_Package.h │ │ ├── YACYAMLUnarchivingExtensions.h │ │ ├── YACYAMLUnarchivingExtensions.m │ │ ├── YACYAMLUnarchivingObject.h │ │ └── YACYAMLUnarchivingObject.m │ ├── YACYAML.h │ ├── YACYAMLConstants.h │ ├── YACYAMLConstants.m │ ├── YACYAMLExtensions.h │ ├── YACYAMLExtensions.m │ ├── YACYAML_Package.h │ └── YACYAML_Package.m │ ├── YACYAMLTests │ ├── YACYAMLTests-Info.plist │ ├── YACYAMLTests.h │ ├── YACYAMLTests.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── zh-Hans.lproj │ │ └── InfoPlist.strings │ └── zh-Hant.lproj │ │ └── InfoPlist.strings │ ├── config.h │ └── libYAML │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── announcement.msg │ ├── bootstrap │ ├── configure.ac │ ├── doc │ └── doxygen.cfg │ ├── include │ ├── Makefile.am │ └── yaml.h │ ├── src │ ├── Makefile.am │ ├── api.c │ ├── dumper.c │ ├── emitter.c │ ├── loader.c │ ├── parser.c │ ├── reader.c │ ├── scanner.c │ ├── writer.c │ └── yaml_private.h │ ├── tests │ ├── Makefile.am │ ├── example-deconstructor-alt.c │ ├── example-deconstructor.c │ ├── example-reformatter-alt.c │ ├── example-reformatter.c │ ├── run-dumper.c │ ├── run-emitter.c │ ├── run-loader.c │ ├── run-parser.c │ ├── run-scanner.c │ ├── test-reader.c │ └── test-version.c │ ├── win32 │ ├── Makefile.am │ ├── config.h │ ├── vc6 │ │ ├── example_deconstructor.dsp │ │ ├── example_deconstructor_alt.dsp │ │ ├── example_reformatter.dsp │ │ ├── example_reformatter_alt.dsp │ │ ├── libyaml.dsw │ │ ├── run_dumper.dsp │ │ ├── run_emitter.dsp │ │ ├── run_loader.dsp │ │ ├── run_parser.dsp │ │ ├── run_scanner.dsp │ │ ├── test_reader.dsp │ │ ├── test_version.dsp │ │ ├── yaml.dsp │ │ └── yamldll.dsp │ ├── vs2003 │ │ ├── example_deconstructor.vcproj │ │ ├── example_deconstructor_alt.vcproj │ │ ├── example_reformatter.vcproj │ │ ├── example_reformatter_alt.vcproj │ │ ├── libyaml.sln │ │ ├── run_dumper.vcproj │ │ ├── run_emitter.vcproj │ │ ├── run_loader.vcproj │ │ ├── run_parser.vcproj │ │ ├── run_scanner.vcproj │ │ ├── test_reader.vcproj │ │ ├── test_version.vcproj │ │ ├── yaml.vcproj │ │ └── yamldll.vcproj │ └── vs2008 │ │ ├── example_deconstructor.vcproj │ │ ├── example_deconstructor_alt.vcproj │ │ ├── example_reformatter.vcproj │ │ ├── example_reformatter_alt.vcproj │ │ ├── libyaml.sln │ │ ├── run_dumper.vcproj │ │ ├── run_emitter.vcproj │ │ ├── run_loader.vcproj │ │ ├── run_parser.vcproj │ │ ├── run_scanner.vcproj │ │ ├── test_reader.vcproj │ │ ├── test_version.vcproj │ │ ├── yaml.vcproj │ │ └── yamldll.vcproj │ └── yaml-0.1.pc.in ├── common.h ├── iRime.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── iRime.xcscmblueprint │ └── xcuserdata │ │ └── jimmy54.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jimmy54.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Keyboard.xcscheme │ ├── iRime.xcscheme │ └── xcschememanagement.plist ├── iRime.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── iRime.xcscmblueprint └── xcuserdata │ └── jimmy54.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── iRime ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── .DS_Store │ ├── 1024lm.imageset │ │ ├── 1024 copy.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-29-ipad.png │ │ ├── icon-29.png │ │ ├── icon-29@2x-ipad.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-57.png │ │ ├── icon-57@2x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ └── icon-83.5@2x.png │ ├── Brand Assets.launchimage │ │ └── Contents.json │ ├── Contents.json │ ├── KBSkinToolbar_icon_emoji.imageset │ │ ├── Contents.json │ │ ├── KBSkinToolbar_icon_emoji@2x.png │ │ └── KBSkinToolbar_icon_emoji@3x.png │ ├── KBSkinToolbar_icon_logo.imageset │ │ ├── Contents.json │ │ ├── KBSkinToolbar_icon_logo4@2x.png │ │ └── KBSkinToolbar_icon_logo4@3x.png │ ├── KBSkinToolbar_icon_setting.imageset │ │ ├── Contents.json │ │ ├── KBSkinToolbar_icon_setting@2x.png │ │ └── KBSkinToolbar_icon_setting@3x.png │ ├── arrow-down-black.imageset │ │ ├── Contents.json │ │ └── arrow-down-black.pdf │ ├── arrow-down-white.imageset │ │ ├── Contents.json │ │ └── arrow-down-white.pdf │ ├── arrow-up-black.imageset │ │ ├── Contents.json │ │ └── arrow-up-black.pdf │ ├── arrow-up-white.imageset │ │ ├── Contents.json │ │ └── arrow-up-white.pdf │ ├── emoji.imageset │ │ ├── Contents.json │ │ └── emoji@2x.png │ ├── emoji_tab0.imageset │ │ ├── Contents.json │ │ ├── emoji_tab0@2x.png │ │ └── emoji_tab0@3x.png │ ├── emoji_tab0Press.imageset │ │ ├── Contents.json │ │ ├── emoji_tab0Press@2x.png │ │ └── emoji_tab0Press@3x.png │ ├── emoji_tab1.imageset │ │ ├── Contents.json │ │ ├── emoji_tab1@2x.png │ │ └── emoji_tab1@3x.png │ ├── emoji_tab1Press.imageset │ │ ├── Contents.json │ │ ├── emoji_tab1Press@2x.png │ │ └── emoji_tab1Press@3x.png │ ├── emoji_tab2.imageset │ │ ├── Contents.json │ │ ├── emoji_tab2@2x.png │ │ └── emoji_tab2@3x.png │ ├── emoji_tab2Press.imageset │ │ ├── Contents.json │ │ ├── emoji_tab2Press@2x.png │ │ └── emoji_tab2Press@3x.png │ ├── emoji_tab3.imageset │ │ ├── Contents.json │ │ ├── emoji_tab3@2x.png │ │ └── emoji_tab3@3x.png │ ├── emoji_tab3Press.imageset │ │ ├── Contents.json │ │ ├── emoji_tab3Press@2x.png │ │ └── emoji_tab3Press@3x.png │ ├── emoji_tab4.imageset │ │ ├── Contents.json │ │ ├── emoji_tab4@2x.png │ │ └── emoji_tab4@3x.png │ ├── emoji_tab4Press.imageset │ │ ├── Contents.json │ │ ├── emoji_tab4Press@2x.png │ │ └── emoji_tab4Press@3x.png │ ├── emoji_tab5.imageset │ │ ├── Contents.json │ │ ├── emoji_tab5@2x.png │ │ └── emoji_tab5@3x.png │ ├── emoji_tab5Press.imageset │ │ ├── Contents.json │ │ ├── emoji_tab5Press@2x.png │ │ └── emoji_tab5Press@3x.png │ ├── enter_nor.imageset │ │ ├── Contents.json │ │ └── enter_nor@2x.png │ ├── enter_press.imageset │ │ ├── Contents.json │ │ └── enter_press@2x.png │ ├── ex_emoji_tab0.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab0@2x.png │ │ └── ex_emoji_tab0@3x.png │ ├── ex_emoji_tab0Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab0Press@2x.png │ │ └── ex_emoji_tab0Press@3x.png │ ├── ex_emoji_tab1-1.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab1@2x.png │ │ └── ex_emoji_tab1@3x.png │ ├── ex_emoji_tab1.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab1@2x.png │ │ └── ex_emoji_tab1@3x.png │ ├── ex_emoji_tab1Press-1.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab1Press@2x.png │ │ └── ex_emoji_tab1Press@3x.png │ ├── ex_emoji_tab1Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab1Press@2x.png │ │ └── ex_emoji_tab1Press@3x.png │ ├── ex_emoji_tab2.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab2@2x.png │ │ └── ex_emoji_tab2@3x.png │ ├── ex_emoji_tab2Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab2Press@2x.png │ │ └── ex_emoji_tab2Press@3x.png │ ├── ex_emoji_tab3.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab3@2x.png │ │ └── ex_emoji_tab3@3x.png │ ├── ex_emoji_tab3Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab3Press@2x.png │ │ └── ex_emoji_tab3Press@3x.png │ ├── ex_emoji_tab4.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab4@2x.png │ │ └── ex_emoji_tab4@3x.png │ ├── ex_emoji_tab4Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab4Press@2x.png │ │ └── ex_emoji_tab4Press@3x.png │ ├── ex_emoji_tab5.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab5@2x.png │ │ └── ex_emoji_tab5@3x.png │ ├── ex_emoji_tab5Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab5Press@2x.png │ │ └── ex_emoji_tab5Press@3x.png │ ├── ex_emoji_tab6.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab6@2x.png │ │ └── ex_emoji_tab6@3x.png │ ├── ex_emoji_tab6Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab6Press@2x.png │ │ └── ex_emoji_tab6Press@3x.png │ ├── ex_emoji_tab7.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab7@2x.png │ │ └── ex_emoji_tab7@3x.png │ ├── ex_emoji_tab7Press.imageset │ │ ├── Contents.json │ │ ├── ex_emoji_tab7Press@2x.png │ │ └── ex_emoji_tab7Press@3x.png │ ├── expression_delete.imageset │ │ ├── Contents.json │ │ ├── expression_delete@2x.png │ │ └── expression_delete@3x.png │ ├── expression_delete_pressed.imageset │ │ ├── Contents.json │ │ ├── expression_delete_pressed@2x.png │ │ └── expression_delete_pressed@3x.png │ ├── filter_delete.imageset │ │ ├── Contents.json │ │ └── filter_delete@2x.png │ ├── iPhone_3_4_0_file_transfer_banner.imageset │ │ ├── Contents.json │ │ ├── iPhone_3_4_0_file_transfer_banner.png │ │ ├── iPhone_3_4_0_file_transfer_banner@2x.png │ │ └── iPhone_3_4_0_file_transfer_banner@3x.png │ ├── icon.imageset │ │ ├── Contents.json │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ └── icon-40@3x.png │ ├── lm.imageset │ │ ├── 64358PICZrR copy.png │ │ └── Contents.json │ ├── wifi_second_top_image_iphone.imageset │ │ ├── Contents.json │ │ └── wifi_second_top_image_iphone.png │ ├── wifi_transfer_no_wifi.imageset │ │ ├── Contents.json │ │ ├── wifi_transfer_no_wifi.png │ │ ├── wifi_transfer_no_wifi@2x.png │ │ └── wifi_transfer_no_wifi@3x.png │ ├── wifi_transfer_wifi_ gray.imageset │ │ ├── Contents.json │ │ ├── wifi_transfer_wifi_ gray.png │ │ ├── wifi_transfer_wifi_ gray@2x.png │ │ └── wifi_transfer_wifi_ gray@3x.png │ └── wifi_transfer_wifi_red.imageset │ │ ├── Contents.json │ │ ├── wifi_transfer_wifi_red.png │ │ ├── wifi_transfer_wifi_red@2x.png │ │ └── wifi_transfer_wifi_red@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── GuideViewController.h ├── GuideViewController.m ├── Info.plist ├── SelectInputViewController.h ├── SelectInputViewController.mm ├── SelectInputViewController.xib ├── SettingFileViewController.h ├── SettingFileViewController.m ├── SettingFileViewController.xib ├── SettingRootViewController.h ├── SettingRootViewController.m ├── Settings.bundle │ ├── Complete.plist │ ├── Root.plist │ ├── Root_backup.plist │ ├── about.plist │ └── en.lproj │ │ └── Root.strings ├── iRime.entitlements ├── main.m ├── zh-Hans.lproj │ ├── LaunchScreen.strings │ └── Main.strings └── zh-Hant.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── iRimeTests ├── Info.plist └── iRimeTests.m ├── iRimeUITests ├── Info.plist └── iRimeUITests.m ├── include ├── rime_api.h └── rime_levers_api.h └── lib ├── .DS_Store ├── OpenCCService.h ├── OpenCCService.mm ├── SimpleConverter.hpp └── yaml-cpp ├── .DS_Store ├── anchor.h ├── binary.h ├── contrib ├── anchordict.h └── graphbuilder.h ├── dll.h ├── emitfromevents.h ├── emitter.h ├── emitterdef.h ├── emittermanip.h ├── emitterstyle.h ├── eventhandler.h ├── exceptions.h ├── mark.h ├── node ├── convert.h ├── detail │ ├── bool_type.h │ ├── impl.h │ ├── iterator.h │ ├── iterator_fwd.h │ ├── memory.h │ ├── node.h │ ├── node_data.h │ ├── node_iterator.h │ └── node_ref.h ├── emit.h ├── impl.h ├── iterator.h ├── node.h ├── parse.h ├── ptr.h └── type.h ├── noncopyable.h ├── null.h ├── ostream_wrapper.h ├── parser.h ├── stlemitter.h ├── traits.h └── yaml.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | iRime/LibAndResource 3 | -------------------------------------------------------------------------------- /iRime/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/.DS_Store -------------------------------------------------------------------------------- /iRime/FileManger/FileManger.h: -------------------------------------------------------------------------------- 1 | // 2 | // FileManger.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 8/26/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | 13 | typedef void(^initSettingFileStartBlock)(void); 14 | typedef void(^initSettingFileEndBlock)(void); 15 | 16 | 17 | @interface FileManger : NSObject 18 | 19 | 20 | @property(nonatomic, strong)initSettingFileStartBlock startBlock; 21 | @property(nonatomic, strong)initSettingFileEndBlock endBlock; 22 | 23 | -(BOOL)checkSettingFileAavid; 24 | -(void)initSettingFile; 25 | -(void)recoverSetting; 26 | 27 | 28 | 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /iRime/FileManger/PlaySound.h: -------------------------------------------------------------------------------- 1 | // 2 | // PlaySound.h 3 | // iRime 4 | // 5 | // Created by jimmy on 21/07/2017. 6 | // Copyright © 2017 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PlaySound : NSObject 12 | 13 | 14 | +(BOOL)playSound:(NSString *)soundPath; 15 | 16 | 17 | +(void)playDefaultSound; 18 | @end 19 | -------------------------------------------------------------------------------- /iRime/Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Header.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 6/15/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import "RimeWrapper.h" 10 | #import "RimeTypeDef.h" 11 | #import "NSString+UTF8Utils.h" 12 | #import "keysymdef.h" 13 | 14 | #import 15 | #import "AGEmojiKeyBoardView.h" 16 | #import "AGEmojiPageView.h" 17 | #import "SVProgressHUD.h" 18 | #import "FileManger.h" 19 | #import "NSString+path.h" 20 | #import "common.h" 21 | #import "PlaySound.h" 22 | #import "OpenCCService.h" 23 | #import 24 | #import 25 | //#import "rime_api.h" 26 | 27 | -------------------------------------------------------------------------------- /iRime/Keyboard/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/Keyboard.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.Rime 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /iRime/Keyboard/RimeWrapeper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/RimeWrapeper/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/RimeWrapeper/Source/NSString+UTF8Utils.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+UTF8Utils.h 3 | // XIME 4 | // 5 | // Created by Stackia on 10/22/14. 6 | // Copyright (c) 2014 Stackia. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (UTF8Utils) 12 | 13 | /// Get UTF-16 code unit position from a UTF-8 byte position 14 | + (int)NSStringPosFromUTF8Pos:(int)vUTF8Pos string:(const char *)string strictMode:(BOOL)strictMode; 15 | 16 | /// Get the number of UTF-16 code unit in a UTF-8 string 17 | + (int)NSStringLengthOfUTF8String:(const char *)string; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /iRime/Keyboard/RimeWrapeper/Source/RimeTypeDef.m: -------------------------------------------------------------------------------- 1 | // 2 | // RimeTypeDef.m 3 | // XIME 4 | // 5 | // Created by Stackia on 10/20/14. 6 | // Copyright (c) 2014 Stackia. All rights reserved. 7 | // 8 | 9 | #import "RimeTypeDef.h" 10 | 11 | @implementation XRimeCandidate 12 | @end 13 | 14 | @implementation XRimeComposition 15 | @end 16 | 17 | @implementation XRimeContext 18 | @end 19 | 20 | @implementation XRimeMenu 21 | @end 22 | -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVIndefiniteAnimatedView.h 3 | // SVProgressHUD 4 | // 5 | // Created by Guillaume Campagna on 2014-12-05. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface SVIndefiniteAnimatedView : UIView 12 | 13 | @property (nonatomic, assign) CGFloat strokeThickness; 14 | @property (nonatomic, assign) CGFloat radius; 15 | @property (nonatomic, strong) UIColor *strokeColor; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /iRime/Keyboard/ZipArchive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/ZipArchive/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/keysound/default.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/keysound/default.caf -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/CandidateModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CandidateModel.swift 3 | // iRime 4 | // 5 | // Created by jimmy54 on 6/30/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class CandidateModel: NSObject { 12 | 13 | var text:String! 14 | var textSize:CGSize? 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/DeployView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeployView.swift 3 | // iRime 4 | // 5 | // Created by jimmy54 on 9/12/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class DeployView: UIView { 12 | 13 | 14 | 15 | override init(frame: CGRect) { 16 | super.init(frame: frame) 17 | self.backgroundColor = UIColor.gray 18 | self.alpha = 0.7 19 | 20 | } 21 | 22 | required init?(coder aDecoder: NSCoder) { 23 | super.init(coder: aDecoder) 24 | 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/TypingLabel.swift: -------------------------------------------------------------------------------- 1 | 2 | import UIKit 3 | 4 | class TypingLabel: UILabel { 5 | 6 | override func drawText(in rect: CGRect) { 7 | let insets = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 0) 8 | super.drawText(in: UIEdgeInsetsInsetRect(rect, insets)) 9 | } 10 | 11 | func updateAppearance() { 12 | if candidatesBannerAppearanceIsDark == true { 13 | self.textColor = UIColor.white 14 | } else { 15 | self.textColor = UIColor.darkText 16 | } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/.DS_Store -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-down-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-down-black.pdf -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-down-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-down-white.pdf -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-up-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-up-black.pdf -------------------------------------------------------------------------------- /iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-up-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Keyboard/tasty-imitation-keyboard/Demo/spi/res/arrow-up-white.pdf -------------------------------------------------------------------------------- /iRime/Pods/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/.DS_Store -------------------------------------------------------------------------------- /iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Back.png -------------------------------------------------------------------------------- /iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Back@2x.png -------------------------------------------------------------------------------- /iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Back@3x.png -------------------------------------------------------------------------------- /iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Forward.png -------------------------------------------------------------------------------- /iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Forward@2x.png -------------------------------------------------------------------------------- /iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/AFWebViewController/AFWebViewController/AFWebViewController.bundle/Forward@3x.png -------------------------------------------------------------------------------- /iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity.png -------------------------------------------------------------------------------- /iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@2x.png -------------------------------------------------------------------------------- /iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@2x~ipad.png -------------------------------------------------------------------------------- /iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@3x.png -------------------------------------------------------------------------------- /iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@3x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity@3x~ipad.png -------------------------------------------------------------------------------- /iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/ARChromeActivity/ARChromeActivity/ARChromeActivity~ipad.png -------------------------------------------------------------------------------- /iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/Info.plist -------------------------------------------------------------------------------- /iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "PROLOGUE" = "

Drag & drop files on this window or use the \"Upload Files…\" button to upload new files.

"; 2 | "EPILOGUE" = ""; 3 | "FOOTER_FORMAT" = "%@ %@"; 4 | -------------------------------------------------------------------------------- /iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /iRime/Pods/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "PROLOGUE" = "

拖文件到这上传

"; 2 | "EPILOGUE" = ""; 3 | "FOOTER_FORMAT" = "%@ %@"; 4 | "UploadFiles" = "上传" 5 | -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/AFWebViewController/AFModalWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AFWebViewController/AFWebViewController/AFModalWebViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/AFWebViewController/AFWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AFWebViewController/AFWebViewController/AFWebViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/AGEmojiKeyboard/AGEmojiKeyBoardView.h: -------------------------------------------------------------------------------- 1 | ../../../AGEmojiKeyboard/AGEmojiKeyboard/AGEmojiKeyBoardView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/AGEmojiKeyboard/AGEmojiPageView.h: -------------------------------------------------------------------------------- 1 | ../../../AGEmojiKeyboard/AGEmojiKeyboard/AGEmojiPageView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ARChromeActivity/ARChromeActivity.h: -------------------------------------------------------------------------------- 1 | ../../../ARChromeActivity/ARChromeActivity/ARChromeActivity.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/CocoaLumberjack.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDASLLogCapture.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDASLLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDAssertMacros.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDFileLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDLegacyMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLegacyMacros.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLog+LOGV.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLog.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLogMacros.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDTTYLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServer.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServer.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerConnection.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerConnection.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerDataRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerDataRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerDataResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerDataResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerErrorResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerErrorResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerFileRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerFileRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerFileResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerFunctions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerHTTPStatusCodes.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerMultiPartFormRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerPrivate.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerStreamedResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerStreamedResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebServerURLEncodedFormRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/GCDWebServer/GCDWebUploader.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebUploader/GCDWebUploader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKAppSettingsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKAppSettingsWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKMultipleValueSelection.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKPSSliderSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKPSTextFieldSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSettingsReader.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSettingsStore.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSettingsStoreFile.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSettingsStoreUserDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSlider.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSpecifier.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSpecifierValuesViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKTextField.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKTextView.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKTextViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextViewCell.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/InAppSettingsKit/IASKViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/TUSafariActivity/TUSafariActivity.h: -------------------------------------------------------------------------------- 1 | ../../../TUSafariActivity/Pod/Classes/TUSafariActivity.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/UIAlertView+Blocks/UIAlertView+Blocks.h: -------------------------------------------------------------------------------- 1 | ../../../UIAlertView+Blocks/UIAlertView+Blocks.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ZipArchive/crypt.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ZipArchive/ioapi.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ZipArchive/mztools.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/mztools.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ZipArchive/unzip.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Private/ZipArchive/zip.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/AFWebViewController/AFModalWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AFWebViewController/AFWebViewController/AFModalWebViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/AFWebViewController/AFWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AFWebViewController/AFWebViewController/AFWebViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/AGEmojiKeyboard/AGEmojiKeyBoardView.h: -------------------------------------------------------------------------------- 1 | ../../../AGEmojiKeyboard/AGEmojiKeyboard/AGEmojiKeyBoardView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/AGEmojiKeyboard/AGEmojiPageView.h: -------------------------------------------------------------------------------- 1 | ../../../AGEmojiKeyboard/AGEmojiKeyboard/AGEmojiPageView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/ARChromeActivity/ARChromeActivity.h: -------------------------------------------------------------------------------- 1 | ../../../ARChromeActivity/ARChromeActivity/ARChromeActivity.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/CocoaLumberjack.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDASLLogCapture.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDASLLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDAssertMacros.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDFileLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDLegacyMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLegacyMacros.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLog+LOGV.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLog.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLogMacros.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDTTYLogger.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServer.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServer.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerConnection.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerConnection.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerDataRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerDataRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerDataResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerDataResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerErrorResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerErrorResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerFileRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerFileRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerFileResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerFunctions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerHTTPStatusCodes.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerMultiPartFormRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Core/GCDWebServerResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerStreamedResponse.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Responses/GCDWebServerStreamedResponse.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebServerURLEncodedFormRequest.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/GCDWebServer/GCDWebUploader.h: -------------------------------------------------------------------------------- 1 | ../../../GCDWebServer/GCDWebUploader/GCDWebUploader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKAppSettingsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKAppSettingsWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKMultipleValueSelection.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKPSSliderSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKPSTextFieldSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSettingsReader.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSettingsStore.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSettingsStoreFile.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSettingsStoreUserDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSlider.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSpecifier.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSpecifierValuesViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKTextField.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKTextView.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKTextViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextViewCell.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/InAppSettingsKit/IASKViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKViewController.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/TUSafariActivity/TUSafariActivity.h: -------------------------------------------------------------------------------- 1 | ../../../TUSafariActivity/Pod/Classes/TUSafariActivity.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/UIAlertView+Blocks/UIAlertView+Blocks.h: -------------------------------------------------------------------------------- 1 | ../../../UIAlertView+Blocks/UIAlertView+Blocks.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/UMengAnalytics/UMMobClick/MobClick.h: -------------------------------------------------------------------------------- 1 | ../../../../UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Versions/A/Headers/MobClick.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/UMengAnalytics/UMMobClick/MobClickGameAnalytics.h: -------------------------------------------------------------------------------- 1 | ../../../../UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Versions/A/Headers/MobClickGameAnalytics.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/UMengAnalytics/UMMobClick/MobClickSocialAnalytics.h: -------------------------------------------------------------------------------- 1 | ../../../../UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Versions/A/Headers/MobClickSocialAnalytics.h -------------------------------------------------------------------------------- /iRime/Pods/Headers/Public/ZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/Base.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacy"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/de.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Datenschutz"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = "In “Einstellungen” App öffnen"; // iOS 8+ Privacy cell: subtitle 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/el.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Απόρρητο"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/en.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacy"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = "Open in “Settings” app"; // iOS 8+ Privacy cell: subtitle 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/es.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacidad"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO!) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/fr.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Confidentialité"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO!) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/it.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacy"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/ja.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "プライバシー"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/nl.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacy"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = "In “Instellingen” app openen"; // iOS 8+ Privacy cell: subtitle 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/pt-PT.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacidade"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/pt.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Privacidade"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/ru.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Приватность"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/sv.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Integritetsskydd"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/th.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "ความเป็นส่วนตัว"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/InAppSettingsKit/InAppSettingsKit/Resources/tr.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | IASKLocalizable.strings 3 | Where To 4 | 5 | Created by Ortwin Gentz on 20.10.14. 6 | Copyright (c) 2014 FutureTap. All rights reserved. 7 | */ 8 | 9 | 10 | "Privacy" = "Gizlilik"; // iOS 8+ Privacy cell: title 11 | "Open in Settings app" = ""; // iOS 8+ Privacy cell: subtitle (TODO) 12 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshFooter.h" 10 | 11 | @interface MJRefreshBackFooter : MJRefreshFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoGifFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoGifFooter : MJRefreshAutoStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *gifView; 13 | 14 | /** 设置state状态下的动画图片images 动画持续时间duration*/ 15 | - (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state; 16 | - (void)setImages:(NSArray *)images forState:(MJRefreshState)state; 17 | @end 18 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoNormalFooter : MJRefreshAutoStateFooter 12 | /** 菊花的样式 */ 13 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 14 | @end 15 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackGifFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackStateFooter.h" 10 | 11 | @interface MJRefreshBackGifFooter : MJRefreshBackStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *gifView; 13 | 14 | /** 设置state状态下的动画图片images 动画持续时间duration*/ 15 | - (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state; 16 | - (void)setImages:(NSArray *)images forState:(MJRefreshState)state; 17 | @end 18 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackStateFooter.h" 10 | 11 | @interface MJRefreshBackNormalFooter : MJRefreshBackStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackStateFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/6/13. 6 | // Copyright © 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackFooter.h" 10 | 11 | @interface MJRefreshBackStateFooter : MJRefreshBackFooter 12 | /** 文字距离圈圈、箭头的距离 */ 13 | @property (assign, nonatomic) CGFloat labelLeftInset; 14 | /** 显示刷新状态的label */ 15 | @property (weak, nonatomic, readonly) UILabel *stateLabel; 16 | /** 设置state状态下的文字 */ 17 | - (void)setTitle:(NSString *)title forState:(MJRefreshState)state; 18 | 19 | /** 获取state状态下的title */ 20 | - (NSString *)titleForState:(MJRefreshState)state; 21 | @end 22 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshGifHeader.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshStateHeader.h" 10 | 11 | @interface MJRefreshGifHeader : MJRefreshStateHeader 12 | @property (weak, nonatomic, readonly) UIImageView *gifView; 13 | 14 | /** 设置state状态下的动画图片images 动画持续时间duration*/ 15 | - (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state; 16 | - (void)setImages:(NSArray *)images forState:(MJRefreshState)state; 17 | @end 18 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshNormalHeader.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshStateHeader.h" 10 | 11 | @interface MJRefreshNormalHeader : MJRefreshStateHeader 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "MJRefreshHeaderIdleText" = "下拉可以刷新"; 2 | "MJRefreshHeaderPullingText" = "鬆開立即刷新"; 3 | "MJRefreshHeaderRefreshingText" = "正在刷新數據中..."; 4 | 5 | "MJRefreshAutoFooterIdleText" = "點擊或上拉加載更多"; 6 | "MJRefreshAutoFooterRefreshingText" = "正在加載更多的數據..."; 7 | "MJRefreshAutoFooterNoMoreDataText" = "已經全部加載完畢"; 8 | 9 | "MJRefreshBackFooterIdleText" = "上拉可以加載更多"; 10 | "MJRefreshBackFooterPullingText" = "鬆開立即加載更多"; 11 | "MJRefreshBackFooterRefreshingText" = "正在加載更多的數據..."; 12 | "MJRefreshBackFooterNoMoreDataText" = "已經全部加載完畢"; 13 | 14 | "MJRefreshHeaderLastTimeText" = "最後更新:"; 15 | "MJRefreshHeaderDateTodayText" = "今天"; 16 | "MJRefreshHeaderNoneLastDateText" = "無記錄"; 17 | -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | // 代码地址: https://github.com/CoderMJLee/MJRefresh 2 | // 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 3 | 4 | #import "UIScrollView+MJRefresh.h" 5 | #import "UIScrollView+MJExtension.h" 6 | #import "UIView+MJExtension.h" 7 | 8 | #import "MJRefreshNormalHeader.h" 9 | #import "MJRefreshGifHeader.h" 10 | 11 | #import "MJRefreshBackNormalFooter.h" 12 | #import "MJRefreshBackGifFooter.h" 13 | #import "MJRefreshAutoNormalFooter.h" 14 | #import "MJRefreshAutoGifFooter.h" -------------------------------------------------------------------------------- /iRime/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSBundle+MJRefresh.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 16/6/13. 6 | // Copyright © 2016年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSBundle (MJRefresh) 12 | + (instancetype)mj_refreshBundle; 13 | + (UIImage *)mj_arrowImage; 14 | + (NSString *)mj_localizedStringForKey:(NSString *)key value:(NSString *)value; 15 | + (NSString *)mj_localizedStringForKey:(NSString *)key; 16 | @end 17 | -------------------------------------------------------------------------------- /iRime/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASCompositeConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 21/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import "MASConstraint.h" 10 | #import "MASUtilities.h" 11 | 12 | /** 13 | * A group of MASConstraint objects 14 | */ 15 | @interface MASCompositeConstraint : MASConstraint 16 | 17 | /** 18 | * Creates a composite with a predefined array of children 19 | * 20 | * @param children child MASConstraints 21 | * 22 | * @return a composite constraint 23 | */ 24 | - (id)initWithChildren:(NSArray *)children; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /iRime/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * When you are debugging or printing the constraints attached to a view this subclass 13 | * makes it easier to identify which constraints have been created via Masonry 14 | */ 15 | @interface MASLayoutConstraint : NSLayoutConstraint 16 | 17 | /** 18 | * a key to associate with this constraint 19 | */ 20 | @property (nonatomic, strong) id mas_key; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /iRime/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iRime/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVIndefiniteAnimatedView.h 3 | // SVProgressHUD 4 | // 5 | // Created by Guillaume Campagna on 2014-12-05. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface SVIndefiniteAnimatedView : UIView 12 | 13 | @property (nonatomic, assign) CGFloat strokeThickness; 14 | @property (nonatomic, assign) CGFloat radius; 15 | @property (nonatomic, strong) UIColor *strokeColor; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/cs.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Otevřít v Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/de.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "In Safari öffnen"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/en.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Open in Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/es.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Abrir en Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/eu.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Safarin ireki"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/fi.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Avaa Safarissa"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/fr.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Ouvrir dans Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/it.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Apri in Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/ja.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Safariで開く"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/ko.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Safari로 열기"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/nl.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Open in Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/no.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Åpne i Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/pl.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Otwórz w Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/pt.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Abrir no Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/ru.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Открыть в Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari-7.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari-7@2x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari-7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari-7@3x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari-7~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari-7~iPad.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari-7~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari-7~iPad@2x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari@2x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari@3x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari~iPad.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/safari~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/safari~iPad@2x.png -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/sk.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Otvoriť v Safari"; -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/sv.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/sv.lproj/TUSafariActivity.strings -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/vi.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/TUSafariActivity/Pod/Assets/vi.lproj/TUSafariActivity.strings -------------------------------------------------------------------------------- /iRime/Pods/TUSafariActivity/Pod/Assets/zh_CN.lproj/TUSafariActivity.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "在 Safari 中打开"; -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/AFWebViewController/AFWebViewController-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFWebViewController : NSObject 3 | @end 4 | @implementation PodsDummy_AFWebViewController 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/AFWebViewController/AFWebViewController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/AGEmojiKeyboard/AGEmojiKeyboard-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AGEmojiKeyboard : NSObject 3 | @end 4 | @implementation PodsDummy_AGEmojiKeyboard 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/AGEmojiKeyboard/AGEmojiKeyboard-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/ARChromeActivity/ARChromeActivity-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ARChromeActivity : NSObject 3 | @end 4 | @implementation PodsDummy_ARChromeActivity 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/ARChromeActivity/ARChromeActivity-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/CocoaLumberjack/CocoaLumberjack-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CocoaLumberjack : NSObject 3 | @end 4 | @implementation PodsDummy_CocoaLumberjack 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/CocoaLumberjack/CocoaLumberjack-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/GCDWebServer/GCDWebServer-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GCDWebServer : NSObject 3 | @end 4 | @implementation PodsDummy_GCDWebServer 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/GCDWebServer/GCDWebServer-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_InAppSettingsKit : NSObject 3 | @end 4 | @implementation PodsDummy_InAppSettingsKit 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/Pods-Keyboard/Pods-Keyboard-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Keyboard : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Keyboard 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/Pods-iRime/Pods-iRime-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_iRime : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_iRime 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/Reachability/Reachability-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Reachability : NSObject 3 | @end 4 | @implementation PodsDummy_Reachability 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/Reachability/Reachability-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SVProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/TUSafariActivity/TUSafariActivity-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TUSafariActivity : NSObject 3 | @end 4 | @implementation PodsDummy_TUSafariActivity 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/UIAlertView+Blocks/UIAlertView+Blocks-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_UIAlertView_Blocks : NSObject 3 | @end 4 | @implementation PodsDummy_UIAlertView_Blocks 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/UIAlertView+Blocks/UIAlertView+Blocks-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/ZipArchive/ZipArchive-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ZipArchive : NSObject 3 | @end 4 | @implementation PodsDummy_ZipArchive 5 | @end 6 | -------------------------------------------------------------------------------- /iRime/Pods/Target Support Files/ZipArchive/ZipArchive-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /iRime/Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /iRime/Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/UMMobClick: -------------------------------------------------------------------------------- 1 | Versions/Current/UMMobClick -------------------------------------------------------------------------------- /iRime/Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Versions/A/UMMobClick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Versions/A/UMMobClick -------------------------------------------------------------------------------- /iRime/Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.1.10/UMMobClick.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /iRime/Setting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/Setting/.DS_Store -------------------------------------------------------------------------------- /iRime/Setting/RimeKit/RimeConfigAppOption.h: -------------------------------------------------------------------------------- 1 | // 2 | // RimeConfigAppOption.h 3 | // SCU 4 | // 5 | // Created by Neo on 2/1/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RimeConfigAppOption : NSObject 12 | 13 | @property(strong) NSString *appId; 14 | @property BOOL asciiMode; // Force ASCII mode 15 | @property BOOL softCursor; // Force soft cursor 16 | 17 | // Properties for Cocoa app using, not initiated in RimeConfigController 18 | @property(strong) NSString *appName; // Application display name 19 | @end 20 | -------------------------------------------------------------------------------- /iRime/Setting/RimeKit/RimeConfigAppOption.m: -------------------------------------------------------------------------------- 1 | // 2 | // RimeConfigAppOption.m 3 | // SCU 4 | // 5 | // Created by Neo on 2/1/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import "RimeConfigAppOption.h" 10 | #import "NSString+SHExtensions.h" 11 | 12 | @implementation RimeConfigAppOption 13 | 14 | - (NSString *)description { 15 | return [NSString stringWithFormat:@"AppOption(appId=%@, asciiMode=%@, softCursor=%@, appName=%@)", 16 | _appId, [NSString stringWithBool:_asciiMode], [NSString stringWithBool:_softCursor], _appName]; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /iRime/Setting/RimeKit/RimeConfigError.h: -------------------------------------------------------------------------------- 1 | // 2 | // RimeConfigError.h 3 | // SCU 4 | // 5 | // Created by Neo on 12/31/12. 6 | // Copyright (c) 2012 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef enum { 12 | RimeConfigFolderNotExistsError, 13 | RimeConfigFileNotExistsError, 14 | RimeConfigUnknownError 15 | } RimeConfigErrorType; 16 | 17 | @interface RimeConfigError : NSError 18 | 19 | @property RimeConfigErrorType errorType; 20 | 21 | @property(strong) NSString *configFolder; 22 | @property(strong) NSString *configFile; 23 | @end 24 | -------------------------------------------------------------------------------- /iRime/Setting/RimeKit/RimeConfigError.m: -------------------------------------------------------------------------------- 1 | // 2 | // RimeConfigError.m 3 | // SCU 4 | // 5 | // Created by Neo on 12/31/12. 6 | // Copyright (c) 2012 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import "RimeConfigError.h" 10 | 11 | @implementation RimeConfigError 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iRime/Setting/RimeKit/RimeKeyCodeTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // RimeKeyCodeTransformer.h 3 | // SCU 4 | // 5 | // Created by Neo on 2/11/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "RimeKeyOSXConstants.h" 11 | 12 | @interface RimeKeyCodeTransformer : NSValueTransformer 13 | 14 | + (instancetype)sharedTransformer; 15 | 16 | + (NSDictionary *)keyMapping; 17 | + (NSDictionary *)reverseKeyMapping; 18 | 19 | - (NSString *)keyCodeToName:(int)keyCode; 20 | - (int)keyNameToCode:(NSString *)keyName; 21 | @end 22 | -------------------------------------------------------------------------------- /iRime/Setting/RimeKit/RimeModifierFlagTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // RimeModifierFlagTransformer.h 3 | // SCU 4 | // 5 | // Created by Neo on 2/11/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "RimeKeyOSXConstants.h" 11 | 12 | @interface RimeModifierFlagTransformer : NSValueTransformer 13 | 14 | + (instancetype)sharedTransformer; 15 | + (NSDictionary *)keyMapping; 16 | 17 | - (NSString *)modifiersFlagToString:(int)flag; 18 | - (int)modifiersStringToFlag:(NSString *)string; 19 | @end 20 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/MacOS/SHKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // SHKit.h 3 | // SHKit 4 | // 5 | // Created by Neo on 12/30/12. 6 | // Copyright (c) 2012 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SHKit : NSObject 12 | 13 | + (NSInteger)alertWithMessage:(NSString *)messageText info:(NSString *)infoText cancelButton:(NSString *)buttonTitle; 14 | @end 15 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/MacOS/SHKit.m: -------------------------------------------------------------------------------- 1 | // 2 | // SHKit.m 3 | // SHKit 4 | // 5 | // Created by Neo on 12/30/12. 6 | // Copyright (c) 2012 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import "SHKit.h" 10 | 11 | @implementation SHKit 12 | 13 | + (NSInteger)alertWithMessage:(NSString *)messageText info:(NSString *)infoText cancelButton:(NSString *)buttonTitle { 14 | NSAlert *alert = [[NSAlert alloc] init]; 15 | 16 | [alert setMessageText:messageText]; 17 | [alert setInformativeText:infoText]; 18 | [alert addButtonWithTitle:buttonTitle]; 19 | 20 | return [alert runModal]; 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/NSObject+DeepMutableCopy.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+DeepMutableCopy.h 3 | // SHKit 4 | // 5 | // Created by Neo on 1/2/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSObject (DeepMutableCopy) 12 | 13 | - (id)deepMutableCopy; 14 | @end 15 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/NSString+SHExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+SHExtensions.h 3 | // SHKit 4 | // 5 | // Created by Neo on 1/2/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (SHExtensions) 12 | 13 | + (NSString *)stringWithBool:(BOOL)value; 14 | @end 15 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/NSString+SHExtensions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+SHExtensions.m 3 | // SHKit 4 | // 5 | // Created by Neo on 1/2/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import "NSString+SHExtensions.h" 10 | 11 | @implementation NSString (SHExtensions) 12 | 13 | + (NSString *)stringWithBool:(BOOL)value { 14 | return value ? @"true" : @"false"; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/README.md: -------------------------------------------------------------------------------- 1 | Listed here are reusable code for OS X / iOS daily developing. Distributed here under [Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/). 2 | 3 | ## Components 4 | 5 | _To Be Defined_ -------------------------------------------------------------------------------- /iRime/Setting/SHKit/SHFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // SHFoundation.h 3 | // SHKit 4 | // 5 | // Created by Neo on 9/13/11. 6 | // Copyright (c) 2011 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SHFoundation : NSObject 12 | 13 | // Objective-C utilities 14 | + (void)swizzleSelector:(SEL)orig ofClass:(Class)c withSelector:(SEL)alt; 15 | @end 16 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/iOS/SHNavigationBarTitleView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SHNavigationBarTitleView.h 3 | // iClojureDocs 4 | // 5 | // Created by Neo on 5/15/13. 6 | // Copyright (c) 2013 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SHNavigationBarTitleView : UIView 12 | 13 | - (void) setTitleText:(NSString *)text; 14 | - (void) setDetailText:(NSString *)text; 15 | @end 16 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/iOS/SHUIKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // SHUIKit.h 3 | // SHKit 4 | // 5 | // Created by Neo on 9/13/11. 6 | // Copyright (c) 2011 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | #define kSCNavigationBarBackgroundImageTag 6183746 13 | 14 | @interface SHUIKit : NSObject 15 | 16 | + (BOOL)canConfigureAppearanceOfClass:(Class)c; 17 | + (void)customizeNavigationBar:(UINavigationController *)navController backgroundImage:(UIImage *)image tintColor:(UIColor *)color; 18 | @end 19 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/iOS/UINavigationBar+BackgroundImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+BackgroundImage.h 3 | // SHKit 4 | // 5 | // Created by Neo on 9/13/11. 6 | // Copyright (c) 2011 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UINavigationBar (BackgroundImage) 12 | 13 | - (void)shInsertSubview:(UIView *)view atIndex:(NSInteger)index; 14 | - (void)shSendSubviewToBack:(UIView *)view; 15 | @end 16 | -------------------------------------------------------------------------------- /iRime/Setting/SHKit/iOS/UIViewController+SHExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+SHExtensions.h 3 | // SHKit 4 | // 5 | // Created by Neo on 3/30/12. 6 | // Copyright (c) 2012 Paradigm X. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController (SHExtensions) 12 | 13 | - (CGRect) viewFrame; 14 | @end 15 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/ToDo.txt: -------------------------------------------------------------------------------- 1 | More thorough testing of date parsing, inc. better testing of time zones. 2 | 3 | 4 | NSKeyed(Un)Archiver Features: 5 | 6 | Conditional objects. 7 | NSKeyedArchiverDelegate equivalent. 8 | setClass:forClassName: 9 | classForClassName: 10 | 11 | 12 | Ideas: 13 | 14 | Generate anchors for strings etc. only if the anchor would take up less space 15 | than referring to the string directly. Make this the default mode for scalars. 16 | 17 | Match and parse scalars (especially dates) using a 'proper' parser rather than 18 | regexes (advantage of regexes is that it's easy to verify that they match 19 | the specs exactly). -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML/Archiving/YACYAMLArchivingObject.h: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAMLArchivingObject.h 3 | // YACYAML 4 | // 5 | // Created by James Montgomerie on 18/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class YACYAMLKeyedArchiver; 12 | struct yaml_emitter_s; 13 | 14 | @interface YACYAMLArchivingObject : NSObject 15 | 16 | @property (nonatomic, strong) id representedObject; 17 | 18 | - (id)initWithRepresentedObject:(id)representedObject 19 | forArchiver:(YACYAMLKeyedArchiver *)archiver; 20 | - (void)encodeChild:(id)obj forKey:(id)key; 21 | 22 | - (void)emitWithEmitter:(struct yaml_emitter_s *)emitter; 23 | 24 | @end -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML/YACYAML.h: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAML.h 3 | // YACYAML 4 | // 5 | // Created by James Montgomerie on 24/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #import -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML/YACYAMLConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAMLConstants.h 3 | // YACYAML 4 | // 5 | // Created by James Montgomerie on 31/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | extern NSString * const YACYAMLUnsupportedTypeException; 12 | extern NSString * const YACYAMLUnsupportedMethodException; 13 | extern NSString * const YACYAMLUnsupportedObjectException; 14 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML/YACYAMLConstants.m: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAMLConstants.m 3 | // YACYAML 4 | // 5 | // Created by James Montgomerie on 31/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import "YACYAMLConstants.h" 10 | 11 | NSString * const YACYAMLUnsupportedTypeException = @"YACYAMLUnsupportedTypeException"; 12 | NSString * const YACYAMLUnsupportedMethodException = @"YACYAMLUnsupportedMethodException"; 13 | NSString * const YACYAMLUnsupportedObjectException = @"YACYAMLUnsupportedObjectException"; 14 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML/YACYAML_Package.h: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAML_Package.h 3 | // YACYAML 4 | // 5 | // Created by James Montgomerie on 25/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | extern NSString * const YACYAMLUnkeyedChildrenKey; 13 | 14 | extern const yaml_char_t *YACYAMLUnkeyedChildrenKeyChars; 15 | extern const int YACYAMLUnkeyedChildrenKeyCharsLength; -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAML/YACYAML_Package.m: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAML_Package.m 3 | // YACYAML 4 | // 5 | // Created by James Montgomerie on 25/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import "YACYAML_Package.h" 10 | 11 | #define YACYAMLUnkeyedChildrenCString "___unkeyedChildren" 12 | 13 | NSString * const YACYAMLUnkeyedChildrenKey = @YACYAMLUnkeyedChildrenCString; 14 | 15 | const yaml_char_t *YACYAMLUnkeyedChildrenKeyChars = (yaml_char_t *)YACYAMLUnkeyedChildrenCString; 16 | const int YACYAMLUnkeyedChildrenKeyCharsLength = sizeof(YACYAMLUnkeyedChildrenKeyChars) - 1; -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAMLTests/YACYAMLTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // YACYAMLTests.h 3 | // YACYAMLTests 4 | // 5 | // Created by James Montgomerie on 17/05/2012. 6 | // Copyright (c) 2012 James Montgomerie. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YACYAMLTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAMLTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAMLTests/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/YACYAMLTests/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Run `./bootstrap` to generate the "Makefile.in" files in this directory and 2 | ## the "$SUBDIRS" subdirectories. 3 | 4 | SUBDIRS = include src . tests win32 5 | 6 | EXTRA_DIST = README LICENSE doc/doxygen.cfg 7 | 8 | pkgconfigdir = $(libdir)/pkgconfig 9 | pkgconfig_DATA = yaml-0.1.pc 10 | 11 | maintainer-clean-local: 12 | -rm -f aclocal.m4 config.h.in configure config/* 13 | -find ${builddir} -name Makefile.in -exec rm -f '{}' ';' 14 | 15 | .PHONY: bootstrap 16 | bootstrap: maintainer-clean 17 | ./bootstrap 18 | 19 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec autoreconf -fvi 4 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/include/Makefile.am: -------------------------------------------------------------------------------- 1 | INCLUDES = yaml.h 2 | DOXYGEN_CFG = $(top_srcdir)/doc/doxygen.cfg 3 | 4 | nobase_include_HEADERS = $(INCLUDES) 5 | 6 | if DOXYGEN 7 | 8 | html: $(INCLUDES) $(DOXYGEN_CFG) 9 | PACKAGE=$(PACKAGE) VERSION=$(VERSION) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) doxygen $(DOXYGEN_CFG) 10 | 11 | endif 12 | 13 | maintainer-clean-local: 14 | -rm -rf $(top_builddir)/doc/html 15 | 16 | dist-hook: html 17 | cp -a $(top_builddir)/doc/html $(top_distdir)/doc 18 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/src/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | lib_LTLIBRARIES = libyaml.la 3 | libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c 4 | libyaml_la_LDFLAGS = -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE) 5 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/tests/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | #AM_CFLAGS = -Wno-pointer-sign 3 | LDADD = $(top_builddir)/src/libyaml.la 4 | TESTS = test-version test-reader 5 | check_PROGRAMS = test-version test-reader 6 | noinst_PROGRAMS = run-scanner run-parser run-loader run-emitter run-dumper \ 7 | example-reformatter example-reformatter-alt \ 8 | example-deconstructor example-deconstructor-alt 9 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/win32/config.h: -------------------------------------------------------------------------------- 1 | #define YAML_VERSION_MAJOR 0 2 | #define YAML_VERSION_MINOR 1 3 | #define YAML_VERSION_PATCH 4 4 | #define YAML_VERSION_STRING "0.1.4" 5 | -------------------------------------------------------------------------------- /iRime/Setting/YACYAML/libYAML/yaml-0.1.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | includedir=@includedir@ 4 | libdir=@libdir@ 5 | 6 | Name: LibYAML 7 | Description: Library to parse and emit YAML 8 | Version: @PACKAGE_VERSION@ 9 | Cflags: 10 | Libs: -L${libdir} -lyaml 11 | -------------------------------------------------------------------------------- /iRime/common.h: -------------------------------------------------------------------------------- 1 | // 2 | // common.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 9/1/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #ifndef common_h 10 | #define common_h 11 | 12 | 13 | #define CURRENT_SCHEMA @"currentSchema" 14 | #define CURRENT_SCHEMA_NAME @"currentSchemaName" 15 | #define DEFAULT_SCHEMA_NAME @"中文键盘" 16 | 17 | 18 | #define CURRENT_CC @"CCC" 19 | 20 | 21 | 22 | #define IS_NEED_DEPOLY @"is_need_depoly" 23 | #define NEED_DEPOLY @"need_depoly" 24 | #define NOT_NEED_DEPOLY @"not_need_depoly" 25 | 26 | 27 | #endif /* common_h */ 28 | -------------------------------------------------------------------------------- /iRime/iRime.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iRime/iRime.xcodeproj/project.xcworkspace/xcuserdata/jimmy54.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime.xcodeproj/project.xcworkspace/xcuserdata/jimmy54.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iRime/iRime.xcodeproj/xcuserdata/jimmy54.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /iRime/iRime.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /iRime/iRime.xcworkspace/xcuserdata/jimmy54.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime.xcworkspace/xcuserdata/jimmy54.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iRime/iRime/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/.DS_Store -------------------------------------------------------------------------------- /iRime/iRime/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 6/15/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "RimeConfigController.h" 11 | 12 | @interface AppDelegate : UIResponder { 13 | } 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | //- (RimeConfigController *)configController; 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/1024lm.imageset/1024 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/1024lm.imageset/1024 copy.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/1024lm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1024 copy.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_emoji.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "KBSkinToolbar_icon_emoji@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "KBSkinToolbar_icon_emoji@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_emoji.imageset/KBSkinToolbar_icon_emoji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_emoji.imageset/KBSkinToolbar_icon_emoji@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_emoji.imageset/KBSkinToolbar_icon_emoji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_emoji.imageset/KBSkinToolbar_icon_emoji@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "KBSkinToolbar_icon_logo4@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "KBSkinToolbar_icon_logo4@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_logo.imageset/KBSkinToolbar_icon_logo4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_logo.imageset/KBSkinToolbar_icon_logo4@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_logo.imageset/KBSkinToolbar_icon_logo4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_logo.imageset/KBSkinToolbar_icon_logo4@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_setting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "KBSkinToolbar_icon_setting@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "KBSkinToolbar_icon_setting@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_setting.imageset/KBSkinToolbar_icon_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_setting.imageset/KBSkinToolbar_icon_setting@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_setting.imageset/KBSkinToolbar_icon_setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/KBSkinToolbar_icon_setting.imageset/KBSkinToolbar_icon_setting@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-down-black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-down-black.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-down-black.imageset/arrow-down-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/arrow-down-black.imageset/arrow-down-black.pdf -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-down-white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-down-white.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-down-white.imageset/arrow-down-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/arrow-down-white.imageset/arrow-down-white.pdf -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-up-black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-up-black.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-up-black.imageset/arrow-up-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/arrow-up-black.imageset/arrow-up-black.pdf -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-up-white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-up-white.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/arrow-up-white.imageset/arrow-up-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/arrow-up-white.imageset/arrow-up-white.pdf -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji.imageset/emoji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji.imageset/emoji@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab0@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab0@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab0.imageset/emoji_tab0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab0.imageset/emoji_tab0@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab0.imageset/emoji_tab0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab0.imageset/emoji_tab0@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab0Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab0Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab0Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab0Press.imageset/emoji_tab0Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab0Press.imageset/emoji_tab0Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab0Press.imageset/emoji_tab0Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab0Press.imageset/emoji_tab0Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab1@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab1.imageset/emoji_tab1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab1.imageset/emoji_tab1@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab1.imageset/emoji_tab1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab1.imageset/emoji_tab1@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab1Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab1Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab1Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab1Press.imageset/emoji_tab1Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab1Press.imageset/emoji_tab1Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab1Press.imageset/emoji_tab1Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab1Press.imageset/emoji_tab1Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab2@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab2.imageset/emoji_tab2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab2.imageset/emoji_tab2@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab2.imageset/emoji_tab2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab2.imageset/emoji_tab2@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab2Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab2Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab2Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab2Press.imageset/emoji_tab2Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab2Press.imageset/emoji_tab2Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab2Press.imageset/emoji_tab2Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab2Press.imageset/emoji_tab2Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab3@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab3@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab3.imageset/emoji_tab3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab3.imageset/emoji_tab3@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab3.imageset/emoji_tab3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab3.imageset/emoji_tab3@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab3Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab3Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab3Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab3Press.imageset/emoji_tab3Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab3Press.imageset/emoji_tab3Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab3Press.imageset/emoji_tab3Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab3Press.imageset/emoji_tab3Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab4@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab4@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab4.imageset/emoji_tab4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab4.imageset/emoji_tab4@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab4.imageset/emoji_tab4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab4.imageset/emoji_tab4@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab4Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab4Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab4Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab4Press.imageset/emoji_tab4Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab4Press.imageset/emoji_tab4Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab4Press.imageset/emoji_tab4Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab4Press.imageset/emoji_tab4Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab5@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab5@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab5.imageset/emoji_tab5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab5.imageset/emoji_tab5@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab5.imageset/emoji_tab5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab5.imageset/emoji_tab5@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab5Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "emoji_tab5Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "emoji_tab5Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab5Press.imageset/emoji_tab5Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab5Press.imageset/emoji_tab5Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/emoji_tab5Press.imageset/emoji_tab5Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/emoji_tab5Press.imageset/emoji_tab5Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/enter_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "enter_nor@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/enter_nor.imageset/enter_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/enter_nor.imageset/enter_nor@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/enter_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "enter_press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/enter_press.imageset/enter_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/enter_press.imageset/enter_press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab0@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab0@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab0.imageset/ex_emoji_tab0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab0.imageset/ex_emoji_tab0@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab0.imageset/ex_emoji_tab0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab0.imageset/ex_emoji_tab0@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab0Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab0Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab0Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab0Press.imageset/ex_emoji_tab0Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab0Press.imageset/ex_emoji_tab0Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab0Press.imageset/ex_emoji_tab0Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab0Press.imageset/ex_emoji_tab0Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab1@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1-1.imageset/ex_emoji_tab1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1-1.imageset/ex_emoji_tab1@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1-1.imageset/ex_emoji_tab1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1-1.imageset/ex_emoji_tab1@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab1@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1.imageset/ex_emoji_tab1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1.imageset/ex_emoji_tab1@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1.imageset/ex_emoji_tab1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1.imageset/ex_emoji_tab1@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1Press-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab1Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab1Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1Press-1.imageset/ex_emoji_tab1Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1Press-1.imageset/ex_emoji_tab1Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1Press-1.imageset/ex_emoji_tab1Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1Press-1.imageset/ex_emoji_tab1Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab1Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab1Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1Press.imageset/ex_emoji_tab1Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1Press.imageset/ex_emoji_tab1Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab1Press.imageset/ex_emoji_tab1Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab1Press.imageset/ex_emoji_tab1Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab2@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab2.imageset/ex_emoji_tab2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab2.imageset/ex_emoji_tab2@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab2.imageset/ex_emoji_tab2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab2.imageset/ex_emoji_tab2@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab2Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab2Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab2Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab2Press.imageset/ex_emoji_tab2Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab2Press.imageset/ex_emoji_tab2Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab2Press.imageset/ex_emoji_tab2Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab2Press.imageset/ex_emoji_tab2Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab3@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab3@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab3.imageset/ex_emoji_tab3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab3.imageset/ex_emoji_tab3@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab3.imageset/ex_emoji_tab3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab3.imageset/ex_emoji_tab3@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab3Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab3Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab3Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab3Press.imageset/ex_emoji_tab3Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab3Press.imageset/ex_emoji_tab3Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab3Press.imageset/ex_emoji_tab3Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab3Press.imageset/ex_emoji_tab3Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab4@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab4@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab4.imageset/ex_emoji_tab4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab4.imageset/ex_emoji_tab4@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab4.imageset/ex_emoji_tab4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab4.imageset/ex_emoji_tab4@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab4Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab4Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab4Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab4Press.imageset/ex_emoji_tab4Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab4Press.imageset/ex_emoji_tab4Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab4Press.imageset/ex_emoji_tab4Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab4Press.imageset/ex_emoji_tab4Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab5@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab5@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab5.imageset/ex_emoji_tab5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab5.imageset/ex_emoji_tab5@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab5.imageset/ex_emoji_tab5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab5.imageset/ex_emoji_tab5@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab5Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab5Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab5Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab5Press.imageset/ex_emoji_tab5Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab5Press.imageset/ex_emoji_tab5Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab5Press.imageset/ex_emoji_tab5Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab5Press.imageset/ex_emoji_tab5Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab6@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab6@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab6.imageset/ex_emoji_tab6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab6.imageset/ex_emoji_tab6@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab6.imageset/ex_emoji_tab6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab6.imageset/ex_emoji_tab6@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab6Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab6Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab6Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab6Press.imageset/ex_emoji_tab6Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab6Press.imageset/ex_emoji_tab6Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab6Press.imageset/ex_emoji_tab6Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab6Press.imageset/ex_emoji_tab6Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab7@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab7@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab7.imageset/ex_emoji_tab7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab7.imageset/ex_emoji_tab7@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab7.imageset/ex_emoji_tab7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab7.imageset/ex_emoji_tab7@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab7Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ex_emoji_tab7Press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ex_emoji_tab7Press@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab7Press.imageset/ex_emoji_tab7Press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab7Press.imageset/ex_emoji_tab7Press@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/ex_emoji_tab7Press.imageset/ex_emoji_tab7Press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/ex_emoji_tab7Press.imageset/ex_emoji_tab7Press@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/expression_delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "expression_delete@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "expression_delete@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/expression_delete.imageset/expression_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/expression_delete.imageset/expression_delete@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/expression_delete.imageset/expression_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/expression_delete.imageset/expression_delete@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/expression_delete_pressed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "expression_delete_pressed@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "expression_delete_pressed@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/expression_delete_pressed.imageset/expression_delete_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/expression_delete_pressed.imageset/expression_delete_pressed@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/expression_delete_pressed.imageset/expression_delete_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/expression_delete_pressed.imageset/expression_delete_pressed@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/filter_delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "filter_delete@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/filter_delete.imageset/filter_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/filter_delete.imageset/filter_delete@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "iPhone_3_4_0_file_transfer_banner.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "iPhone_3_4_0_file_transfer_banner@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "iPhone_3_4_0_file_transfer_banner@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/iPhone_3_4_0_file_transfer_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/iPhone_3_4_0_file_transfer_banner.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/iPhone_3_4_0_file_transfer_banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/iPhone_3_4_0_file_transfer_banner@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/iPhone_3_4_0_file_transfer_banner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/iPhone_3_4_0_file_transfer_banner.imageset/iPhone_3_4_0_file_transfer_banner@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon-40.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon-40@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon-40@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/icon.imageset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/icon.imageset/icon-40.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/icon.imageset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/icon.imageset/icon-40@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/icon.imageset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/icon.imageset/icon-40@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/lm.imageset/64358PICZrR copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/lm.imageset/64358PICZrR copy.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/lm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "64358PICZrR copy.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_second_top_image_iphone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wifi_second_top_image_iphone.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_second_top_image_iphone.imageset/wifi_second_top_image_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_second_top_image_iphone.imageset/wifi_second_top_image_iphone.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wifi_transfer_no_wifi.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "wifi_transfer_no_wifi@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "wifi_transfer_no_wifi@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/wifi_transfer_no_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/wifi_transfer_no_wifi.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/wifi_transfer_no_wifi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/wifi_transfer_no_wifi@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/wifi_transfer_no_wifi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_no_wifi.imageset/wifi_transfer_no_wifi@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wifi_transfer_wifi_ gray.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "wifi_transfer_wifi_ gray@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "wifi_transfer_wifi_ gray@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/wifi_transfer_wifi_ gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/wifi_transfer_wifi_ gray.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/wifi_transfer_wifi_ gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/wifi_transfer_wifi_ gray@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/wifi_transfer_wifi_ gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_wifi_ gray.imageset/wifi_transfer_wifi_ gray@3x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wifi_transfer_wifi_red.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "wifi_transfer_wifi_red@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "wifi_transfer_wifi_red@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/wifi_transfer_wifi_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/wifi_transfer_wifi_red.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/wifi_transfer_wifi_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/wifi_transfer_wifi_red@2x.png -------------------------------------------------------------------------------- /iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/wifi_transfer_wifi_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Assets.xcassets/wifi_transfer_wifi_red.imageset/wifi_transfer_wifi_red@3x.png -------------------------------------------------------------------------------- /iRime/iRime/GuideViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // GuideViewController.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 8/27/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface GuideViewController : AFWebViewController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /iRime/iRime/SelectInputViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SelectInputViewController.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 8/15/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SelectInputViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iRime/iRime/SettingFileViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SettingFileViewController.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 8/26/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SettingFileViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iRime/iRime/SettingRootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // iRime 4 | // 5 | // Created by jimmy54 on 6/15/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface SettingRootViewController : IASKAppSettingsViewController 13 | 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /iRime/iRime/Settings.bundle/Complete.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StringsTable 6 | Root 7 | PreferenceSpecifiers 8 | 9 | 10 | Type 11 | PSGroupSpecifier 12 | Title 13 | Xcode是一款非常优秀的IDE,但是在日志打印上貌似没有那么多高级的特性,比如分级打印,显示颜色。本博客就介绍下两个开源组件结合使用达到如下效果: 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /iRime/iRime/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/iRime/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /iRime/iRime/iRime.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.Rime 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /iRime/iRime/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // iRime 4 | // 5 | // Created by jimmy54 on 6/15/16. 6 | // Copyright © 2016 jimmy54. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /iRime/iRime/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iRime/iRime/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UINavigationItem"; title = "iRime输入法"; ObjectID = "2LW-8K-j5p"; */ 3 | "2LW-8K-j5p.title" = "iRime输入法"; 4 | -------------------------------------------------------------------------------- /iRime/iRime/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iRime/iRime/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UINavigationItem"; title = "iRime输入法"; ObjectID = "2LW-8K-j5p"; */ 3 | "2LW-8K-j5p.title" = "iRime输入法"; 4 | -------------------------------------------------------------------------------- /iRime/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/lib/.DS_Store -------------------------------------------------------------------------------- /iRime/lib/yaml-cpp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmy54/iRime/709dc6f0a7cd215e531b160b910d83141a8e1405/iRime/lib/yaml-cpp/.DS_Store -------------------------------------------------------------------------------- /iRime/lib/yaml-cpp/anchor.h: -------------------------------------------------------------------------------- 1 | #ifndef ANCHOR_H_62B23520_7C8E_11DE_8A39_0800200C9A66 2 | #define ANCHOR_H_62B23520_7C8E_11DE_8A39_0800200C9A66 3 | 4 | #if defined(_MSC_VER) || \ 5 | (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ 6 | (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 7 | #pragma once 8 | #endif 9 | 10 | #include 11 | 12 | namespace YAML { 13 | typedef std::size_t anchor_t; 14 | const anchor_t NullAnchor = 0; 15 | } 16 | 17 | #endif // ANCHOR_H_62B23520_7C8E_11DE_8A39_0800200C9A66 18 | -------------------------------------------------------------------------------- /iRime/lib/yaml-cpp/emitterdef.h: -------------------------------------------------------------------------------- 1 | #ifndef EMITTERDEF_H_62B23520_7C8E_11DE_8A39_0800200C9A66 2 | #define EMITTERDEF_H_62B23520_7C8E_11DE_8A39_0800200C9A66 3 | 4 | #if defined(_MSC_VER) || \ 5 | (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ 6 | (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 7 | #pragma once 8 | #endif 9 | 10 | namespace YAML { 11 | struct EmitterNodeType { 12 | enum value { NoType, Property, Scalar, FlowSeq, BlockSeq, FlowMap, BlockMap }; 13 | }; 14 | } 15 | 16 | #endif // EMITTERDEF_H_62B23520_7C8E_11DE_8A39_0800200C9A66 17 | -------------------------------------------------------------------------------- /iRime/lib/yaml-cpp/emitterstyle.h: -------------------------------------------------------------------------------- 1 | #ifndef EMITTERSTYLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66 2 | #define EMITTERSTYLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66 3 | 4 | #if defined(_MSC_VER) || \ 5 | (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ 6 | (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 7 | #pragma once 8 | #endif 9 | 10 | namespace YAML { 11 | struct EmitterStyle { 12 | enum value { Default, Block, Flow }; 13 | }; 14 | } 15 | 16 | #endif // EMITTERSTYLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66 17 | -------------------------------------------------------------------------------- /iRime/lib/yaml-cpp/node/type.h: -------------------------------------------------------------------------------- 1 | #ifndef VALUE_TYPE_H_62B23520_7C8E_11DE_8A39_0800200C9A66 2 | #define VALUE_TYPE_H_62B23520_7C8E_11DE_8A39_0800200C9A66 3 | 4 | #if defined(_MSC_VER) || \ 5 | (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ 6 | (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 7 | #pragma once 8 | #endif 9 | 10 | namespace YAML { 11 | struct NodeType { 12 | enum value { Undefined, Null, Scalar, Sequence, Map }; 13 | }; 14 | } 15 | 16 | #endif // VALUE_TYPE_H_62B23520_7C8E_11DE_8A39_0800200C9A66 17 | --------------------------------------------------------------------------------