├── .gitignore ├── Candidates ├── english_word_list.txt ├── extra_candidates_utf8.txt ├── generate_database.py └── rawdict_utf8_65105_freq.txt ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── Headers │ ├── Private │ │ ├── FMDB │ │ │ ├── FMDB.h │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabasePool.h │ │ │ ├── FMDatabaseQueue.h │ │ │ └── FMResultSet.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 │ │ │ └── IASKViewController.h │ │ └── uservoice-iphone-sdk │ │ │ ├── Base64Transcoder.h │ │ │ ├── HRFormatJSON.h │ │ │ ├── HRFormatterProtocol.h │ │ │ ├── HRGlobal.h │ │ │ ├── HROperationQueue.h │ │ │ ├── HRRequestOperation.h │ │ │ ├── HRResponseDelegate.h │ │ │ ├── HRRestModel.h │ │ │ ├── HTTPRiot.h │ │ │ ├── UVAccessToken.h │ │ │ ├── UVArticle.h │ │ │ ├── UVArticleViewController.h │ │ │ ├── UVAttachment.h │ │ │ ├── UVBabayaga.h │ │ │ ├── UVBaseModel.h │ │ │ ├── UVBaseViewController.h │ │ │ ├── UVCalculatingLabel.h │ │ │ ├── UVCallback.h │ │ │ ├── UVCategory.h │ │ │ ├── UVClientConfig.h │ │ │ ├── UVComment.h │ │ │ ├── UVCommentViewController.h │ │ │ ├── UVConfig.h │ │ │ ├── UVContactViewController.h │ │ │ ├── UVCustomField.h │ │ │ ├── UVDefines.h │ │ │ ├── UVDeflection.h │ │ │ ├── UVDelegate.h │ │ │ ├── UVDetailsFormViewController.h │ │ │ ├── UVForum.h │ │ │ ├── UVHelpTopic.h │ │ │ ├── UVHelpTopicViewController.h │ │ │ ├── UVImageCache.h │ │ │ ├── UVImageView.h │ │ │ ├── UVInitialLoadManager.h │ │ │ ├── UVInstantAnswerManager.h │ │ │ ├── UVInstantAnswersViewController.h │ │ │ ├── UVKeyboardUtils.h │ │ │ ├── UVModelDelegate.h │ │ │ ├── UVNavigationController.h │ │ │ ├── UVPostIdeaViewController.h │ │ │ ├── UVRequestContext.h │ │ │ ├── UVRequestToken.h │ │ │ ├── UVResponseDelegate.h │ │ │ ├── UVRootViewController.h │ │ │ ├── UVSession.h │ │ │ ├── UVSigninManager.h │ │ │ ├── UVStyleSheet.h │ │ │ ├── UVSubdomain.h │ │ │ ├── UVSuccessViewController.h │ │ │ ├── UVSuggestion.h │ │ │ ├── UVSuggestionDetailsViewController.h │ │ │ ├── UVSuggestionListViewController.h │ │ │ ├── UVTextView.h │ │ │ ├── UVTextWithFieldsView.h │ │ │ ├── UVTicket.h │ │ │ ├── UVTruncatingLabel.h │ │ │ ├── UVUser.h │ │ │ ├── UVUtils.h │ │ │ ├── UVValueSelectViewController.h │ │ │ ├── UVWelcomeViewController.h │ │ │ ├── UserVoice.h │ │ │ ├── YOAuth.h │ │ │ ├── YOAuthConsumer.h │ │ │ ├── YOAuthRequest.h │ │ │ ├── YOAuthSignatureMethod.h │ │ │ ├── YOAuthSignatureMethod_HMAC-SHA1.h │ │ │ ├── YOAuthSignatureMethod_PLAINTEXT.h │ │ │ ├── YOAuthToken.h │ │ │ └── YOAuthUtil.h │ └── Public │ │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMResultSet.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 │ │ └── IASKViewController.h │ │ └── uservoice-iphone-sdk │ │ ├── Base64Transcoder.h │ │ ├── HRFormatJSON.h │ │ ├── HRFormatterProtocol.h │ │ ├── HRGlobal.h │ │ ├── HROperationQueue.h │ │ ├── HRRequestOperation.h │ │ ├── HRResponseDelegate.h │ │ ├── HRRestModel.h │ │ ├── HTTPRiot.h │ │ ├── UVAccessToken.h │ │ ├── UVArticle.h │ │ ├── UVArticleViewController.h │ │ ├── UVAttachment.h │ │ ├── UVBabayaga.h │ │ ├── UVBaseModel.h │ │ ├── UVBaseViewController.h │ │ ├── UVCalculatingLabel.h │ │ ├── UVCallback.h │ │ ├── UVCategory.h │ │ ├── UVClientConfig.h │ │ ├── UVComment.h │ │ ├── UVCommentViewController.h │ │ ├── UVConfig.h │ │ ├── UVContactViewController.h │ │ ├── UVCustomField.h │ │ ├── UVDefines.h │ │ ├── UVDeflection.h │ │ ├── UVDelegate.h │ │ ├── UVDetailsFormViewController.h │ │ ├── UVForum.h │ │ ├── UVHelpTopic.h │ │ ├── UVHelpTopicViewController.h │ │ ├── UVImageCache.h │ │ ├── UVImageView.h │ │ ├── UVInitialLoadManager.h │ │ ├── UVInstantAnswerManager.h │ │ ├── UVInstantAnswersViewController.h │ │ ├── UVKeyboardUtils.h │ │ ├── UVModelDelegate.h │ │ ├── UVNavigationController.h │ │ ├── UVPostIdeaViewController.h │ │ ├── UVRequestContext.h │ │ ├── UVRequestToken.h │ │ ├── UVResponseDelegate.h │ │ ├── UVRootViewController.h │ │ ├── UVSession.h │ │ ├── UVSigninManager.h │ │ ├── UVStyleSheet.h │ │ ├── UVSubdomain.h │ │ ├── UVSuccessViewController.h │ │ ├── UVSuggestion.h │ │ ├── UVSuggestionDetailsViewController.h │ │ ├── UVSuggestionListViewController.h │ │ ├── UVTextView.h │ │ ├── UVTextWithFieldsView.h │ │ ├── UVTicket.h │ │ ├── UVTruncatingLabel.h │ │ ├── UVUser.h │ │ ├── UVUtils.h │ │ ├── UVValueSelectViewController.h │ │ ├── UVWelcomeViewController.h │ │ ├── UserVoice.h │ │ ├── YOAuth.h │ │ ├── YOAuthConsumer.h │ │ ├── YOAuthRequest.h │ │ ├── YOAuthSignatureMethod.h │ │ ├── YOAuthSignatureMethod_HMAC-SHA1.h │ │ ├── YOAuthSignatureMethod_PLAINTEXT.h │ │ ├── YOAuthToken.h │ │ └── YOAuthUtil.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 │ ├── LICENSE │ └── README.md ├── Local Podspecs │ └── uservoice-iphone-sdk.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── Target Support Files │ ├── FMDB │ │ ├── FMDB-dummy.m │ │ ├── FMDB-prefix.pch │ │ └── FMDB.xcconfig │ ├── InAppSettingsKit │ │ ├── InAppSettingsKit-dummy.m │ │ ├── InAppSettingsKit-prefix.pch │ │ └── InAppSettingsKit.xcconfig │ ├── Pods-SPi │ │ ├── Pods-SPi-acknowledgements.markdown │ │ ├── Pods-SPi-acknowledgements.plist │ │ ├── Pods-SPi-dummy.m │ │ ├── Pods-SPi-frameworks.sh │ │ ├── Pods-SPi-resources.sh │ │ ├── Pods-SPi.debug.xcconfig │ │ └── Pods-SPi.release.xcconfig │ ├── Pods-SPiKeyboard │ │ ├── Pods-SPiKeyboard-acknowledgements.markdown │ │ ├── Pods-SPiKeyboard-acknowledgements.plist │ │ ├── Pods-SPiKeyboard-dummy.m │ │ ├── Pods-SPiKeyboard-frameworks.sh │ │ ├── Pods-SPiKeyboard-resources.sh │ │ ├── Pods-SPiKeyboard.debug.xcconfig │ │ └── Pods-SPiKeyboard.release.xcconfig │ └── uservoice-iphone-sdk │ │ ├── uservoice-iphone-sdk-dummy.m │ │ ├── uservoice-iphone-sdk-prefix.pch │ │ └── uservoice-iphone-sdk.xcconfig └── uservoice-iphone-sdk │ ├── Classes │ ├── UVAccessToken.h │ ├── UVAccessToken.m │ ├── UVArticle.h │ ├── UVArticle.m │ ├── UVArticleViewController.h │ ├── UVArticleViewController.m │ ├── UVAttachment.h │ ├── UVAttachment.m │ ├── UVBabayaga.h │ ├── UVBabayaga.m │ ├── UVBaseModel.h │ ├── UVBaseModel.m │ ├── UVBaseViewController.h │ ├── UVBaseViewController.m │ ├── UVCalculatingLabel.h │ ├── UVCalculatingLabel.m │ ├── UVCallback.h │ ├── UVCallback.m │ ├── UVCategory.h │ ├── UVCategory.m │ ├── UVClientConfig.h │ ├── UVClientConfig.m │ ├── UVComment.h │ ├── UVComment.m │ ├── UVCommentViewController.h │ ├── UVCommentViewController.m │ ├── UVConfig.m │ ├── UVContactViewController.h │ ├── UVContactViewController.m │ ├── UVCustomField.h │ ├── UVCustomField.m │ ├── UVDefines.h │ ├── UVDeflection.h │ ├── UVDeflection.m │ ├── UVDetailsFormViewController.h │ ├── UVDetailsFormViewController.m │ ├── UVForum.h │ ├── UVForum.m │ ├── UVHelpTopic.h │ ├── UVHelpTopic.m │ ├── UVHelpTopicViewController.h │ ├── UVHelpTopicViewController.m │ ├── UVImageCache.h │ ├── UVImageCache.m │ ├── UVImageView.h │ ├── UVImageView.m │ ├── UVInitialLoadManager.h │ ├── UVInitialLoadManager.m │ ├── UVInstantAnswerManager.h │ ├── UVInstantAnswerManager.m │ ├── UVInstantAnswersViewController.h │ ├── UVInstantAnswersViewController.m │ ├── UVKeyboardUtils.h │ ├── UVKeyboardUtils.m │ ├── UVModelDelegate.h │ ├── UVNavigationController.h │ ├── UVNavigationController.m │ ├── UVPostIdeaViewController.h │ ├── UVPostIdeaViewController.m │ ├── UVRequestContext.h │ ├── UVRequestContext.m │ ├── UVRequestToken.h │ ├── UVRequestToken.m │ ├── UVResponseDelegate.h │ ├── UVResponseDelegate.m │ ├── UVRootViewController.h │ ├── UVRootViewController.m │ ├── UVSession.h │ ├── UVSession.m │ ├── UVSigninManager.h │ ├── UVSigninManager.m │ ├── UVStyleSheet.m │ ├── UVSubdomain.h │ ├── UVSubdomain.m │ ├── UVSuccessViewController.h │ ├── UVSuccessViewController.m │ ├── UVSuggestion.h │ ├── UVSuggestion.m │ ├── UVSuggestionDetailsViewController.h │ ├── UVSuggestionDetailsViewController.m │ ├── UVSuggestionListViewController.h │ ├── UVSuggestionListViewController.m │ ├── UVTextView.h │ ├── UVTextView.m │ ├── UVTextWithFieldsView.h │ ├── UVTextWithFieldsView.m │ ├── UVTicket.h │ ├── UVTicket.m │ ├── UVTruncatingLabel.h │ ├── UVTruncatingLabel.m │ ├── UVUser.h │ ├── UVUser.m │ ├── UVUtils.h │ ├── UVUtils.m │ ├── UVValueSelectViewController.h │ ├── UVValueSelectViewController.m │ ├── UVWelcomeViewController.h │ ├── UVWelcomeViewController.m │ └── UserVoice.m │ ├── Include │ ├── UVConfig.h │ ├── UVDelegate.h │ ├── UVStyleSheet.h │ └── UserVoice.h │ ├── LICENSE.md │ ├── README.md │ ├── Resources │ ├── ca.lproj │ │ └── UserVoice.strings │ ├── cs.lproj │ │ └── UserVoice.strings │ ├── da.lproj │ │ └── UserVoice.strings │ ├── de.lproj │ │ └── UserVoice.strings │ ├── el.lproj │ │ └── UserVoice.strings │ ├── en-GB.lproj │ │ └── UserVoice.strings │ ├── en.lproj │ │ └── UserVoice.strings │ ├── es.lproj │ │ └── UserVoice.strings │ ├── fi.lproj │ │ └── UserVoice.strings │ ├── fr.lproj │ │ └── UserVoice.strings │ ├── hr.lproj │ │ └── UserVoice.strings │ ├── hu.lproj │ │ └── UserVoice.strings │ ├── id.lproj │ │ └── UserVoice.strings │ ├── it.lproj │ │ └── UserVoice.strings │ ├── ja.lproj │ │ └── UserVoice.strings │ ├── ko.lproj │ │ └── UserVoice.strings │ ├── ms.lproj │ │ └── UserVoice.strings │ ├── nb.lproj │ │ └── UserVoice.strings │ ├── nl.lproj │ │ └── UserVoice.strings │ ├── pl.lproj │ │ └── UserVoice.strings │ ├── pt-PT.lproj │ │ └── UserVoice.strings │ ├── pt.lproj │ │ └── UserVoice.strings │ ├── ro.lproj │ │ └── UserVoice.strings │ ├── ru.lproj │ │ └── UserVoice.strings │ ├── sk.lproj │ │ └── UserVoice.strings │ ├── sv.lproj │ │ └── UserVoice.strings │ ├── th.lproj │ │ └── UserVoice.strings │ ├── tr.lproj │ │ └── UserVoice.strings │ ├── uk.lproj │ │ └── UserVoice.strings │ ├── uv_article.png │ ├── uv_article@2x.png │ ├── uv_heart.png │ ├── uv_heart@2x.png │ ├── uv_idea.png │ ├── uv_idea@2x.png │ ├── vi.lproj │ │ └── UserVoice.strings │ ├── zh-Hans.lproj │ │ └── UserVoice.strings │ └── zh-Hant.lproj │ │ └── UserVoice.strings │ └── Vendor │ ├── HTTPRiot │ ├── Formatters │ │ ├── HRFormatJSON.h │ │ ├── HRFormatJSON.m │ │ └── HRFormatterProtocol.h │ ├── HRGlobal.h │ ├── HRGlobal.m │ ├── HROperationQueue.h │ ├── HROperationQueue.m │ ├── HRRequestOperation.h │ ├── HRRequestOperation.m │ ├── HRResponseDelegate.h │ ├── HRRestModel.h │ ├── HRRestModel.m │ └── HTTPRiot.h │ └── YOAuth │ ├── Crypto │ ├── Base64Transcoder.c │ └── Base64Transcoder.h │ ├── YOAuth.h │ ├── YOAuthConsumer.h │ ├── YOAuthConsumer.m │ ├── YOAuthRequest.h │ ├── YOAuthRequest.m │ ├── YOAuthSignatureMethod.h │ ├── YOAuthSignatureMethod_HMAC-SHA1.h │ ├── YOAuthSignatureMethod_HMAC-SHA1.m │ ├── YOAuthSignatureMethod_PLAINTEXT.h │ ├── YOAuthSignatureMethod_PLAINTEXT.m │ ├── YOAuthToken.h │ ├── YOAuthToken.m │ ├── YOAuthUtil.h │ └── YOAuthUtil.m ├── README.md ├── SPi.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── SPi.xccheckout └── xcshareddata │ └── xcschemes │ └── SPi.xcscheme ├── SPi.xcworkspace └── contents.xcworkspacedata ├── SPi ├── AppDelegate.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── 29@2x.png │ │ ├── 29@3x.png │ │ ├── 40@2x.png │ │ ├── 40@3x.png │ │ ├── 60@2x.png │ │ ├── 60@3x.png │ │ └── Contents.json │ └── Screenshot tap keyboard settings icon.imageset │ │ ├── Contents.json │ │ ├── screenshot-tap-keyboard-settings-icon-6.png │ │ └── screenshot-tap-keyboard-settings-icon-6p.png ├── Info.plist ├── Resource │ ├── 1024.png │ ├── 29@2x.png │ ├── 29@3x.png │ ├── 40@2x.png │ ├── 40@3x.png │ ├── 60@2x.png │ ├── 60@3x.png │ ├── icon.sketch │ └── screenshot-tap-keyboard-settings-icon │ │ ├── black │ │ ├── screenshot-tap-keyboard-settings-icon-5s.png │ │ ├── screenshot-tap-keyboard-settings-icon-6.png │ │ └── screenshot-tap-keyboard-settings-icon-6p.png │ │ └── white │ │ ├── screenshot-tap-keyboard-settings-icon-5s.png │ │ ├── screenshot-tap-keyboard-settings-icon-6.png │ │ └── screenshot-tap-keyboard-settings-icon-6p.png ├── SPi-Bridging-Header.h ├── Settings.bundle │ ├── About.plist │ ├── Acknowledgements.plist │ ├── Root~iphone.inApp.plist │ └── Tutorial.plist ├── ViewController.swift └── zh-Hans.lproj │ └── LaunchScreen.xib ├── SPiKeyboard ├── AdvanceInputHistoryRowCell.swift ├── AdvanceInputHistoryRowCell.xib ├── AppearanceConfigure.swift ├── Candidate.swift ├── CandidateCell.swift ├── CandidatesBanner.swift ├── CandidatesDataModel.swift ├── Images.xcassets │ ├── 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 ├── Info.plist ├── InputHistory.swift ├── InputHistoryRowCell.swift ├── InputHistoryTableViewController.swift ├── Logger.swift ├── MyCollectionViewFlowLayout.swift ├── MyKeyboardViewController.swift ├── PinYinHelper.swift ├── Resource │ ├── arrow-down-black.pdf │ ├── arrow-down-white.pdf │ ├── arrow-up-black.pdf │ ├── arrow-up-white.pdf │ └── keyboard-more-candidates-arrows.sketch ├── SPiKeyboard-Bridging-Header.h ├── Settings.bundle │ └── Root.inApp.plist ├── ShuangpinScheme.swift ├── StringExtension.swift ├── TastyImitationKeyboard │ ├── Catboard.swift │ ├── CatboardBanner.swift │ ├── DefaultKeyboard.swift │ ├── DefaultSettings.swift │ ├── DefaultSettings.xib │ ├── DirectionEnum.swift │ ├── ExtraView.swift │ ├── ForwardingView.swift │ ├── ImageKey.swift │ ├── KeyboardConnector.swift │ ├── KeyboardInputTraits.swift │ ├── KeyboardKey.swift │ ├── KeyboardKeyBackground.swift │ ├── KeyboardLayout.swift │ ├── KeyboardModel.swift │ ├── KeyboardViewController.swift │ ├── Media.xcassets │ │ └── gear.imageset │ │ │ ├── Contents.json │ │ │ ├── gear.png │ │ │ ├── gear@2x.png │ │ │ └── gear@3x.png │ ├── Shapes.swift │ └── Utilities.swift ├── TypingLabel.swift ├── TypingString.swift └── schemes │ ├── 小鹤双拼.spscheme │ ├── 微软拼音2003.spscheme │ ├── 拼音加加.spscheme │ ├── 智能ABC.spscheme │ ├── 紫光拼音.spscheme │ └── 自然码.spscheme ├── SPiTests ├── Info.plist ├── SPiTests.swift └── StringExtensionTests.swift ├── ShuangpinTests ├── GetShengmuTests.swift ├── Info.plist ├── ShuangpinSchemeTests.swift └── ShuangpinTests.swift ├── before_build.sh ├── check_build_number.py ├── check_no_changes_after_last_commit.sh ├── pre-commit ├── update_build_number.py ├── update_candidates_database.sh ├── update_candidates_database_if_necessary.py └── update_git_pre_commit.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/.gitignore -------------------------------------------------------------------------------- /Candidates/english_word_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Candidates/english_word_list.txt -------------------------------------------------------------------------------- /Candidates/extra_candidates_utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Candidates/extra_candidates_utf8.txt -------------------------------------------------------------------------------- /Candidates/generate_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Candidates/generate_database.py -------------------------------------------------------------------------------- /Candidates/rawdict_utf8_65105_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Candidates/rawdict_utf8_65105_freq.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /Pods/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/README.markdown -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKAppSettingsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKAppSettingsWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKMultipleValueSelection.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKPSSliderSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKPSTextFieldSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSettingsReader.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSettingsStore.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSettingsStoreFile.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSettingsStoreUserDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSlider.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSpecifier.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSpecifierValuesViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKTextField.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.h -------------------------------------------------------------------------------- /Pods/Headers/Private/InAppSettingsKit/IASKViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/Base64Transcoder.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/Crypto/Base64Transcoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HRFormatJSON.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatJSON.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HRFormatterProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatterProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HRGlobal.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRGlobal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HROperationQueue.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HROperationQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HRRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HRResponseDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRResponseDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HRRestModel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRRestModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/HTTPRiot.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HTTPRiot.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVAccessToken.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVAccessToken.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVArticle.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVArticle.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVArticleViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVArticleViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVAttachment.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVBabayaga.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVBabayaga.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVBaseModel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVBaseModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVBaseViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVBaseViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVCalculatingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCalculatingLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVCallback.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCallback.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVCategory.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVClientConfig.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVClientConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVComment.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVComment.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVCommentViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCommentViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVConfig.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UVConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVContactViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVContactViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVCustomField.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCustomField.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVDefines.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVDeflection.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVDeflection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UVDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVDetailsFormViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVDetailsFormViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVForum.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVForum.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVHelpTopic.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVHelpTopic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVHelpTopicViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVHelpTopicViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVImageView.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVInitialLoadManager.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVInitialLoadManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVInstantAnswerManager.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVInstantAnswerManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVInstantAnswersViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVInstantAnswersViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVKeyboardUtils.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVKeyboardUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVModelDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVModelDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVNavigationController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVNavigationController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVPostIdeaViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVPostIdeaViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVRequestContext.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVRequestContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVRequestToken.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVRequestToken.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVResponseDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVResponseDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVRootViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVRootViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSession.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSession.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSigninManager.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSigninManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVStyleSheet.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UVStyleSheet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSubdomain.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSubdomain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSuccessViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuccessViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSuggestion.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuggestion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSuggestionDetailsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuggestionDetailsViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVSuggestionListViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuggestionListViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVTextView.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVTextWithFieldsView.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTextWithFieldsView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVTicket.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTicket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVTruncatingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTruncatingLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVUser.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVUtils.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVValueSelectViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVValueSelectViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UVWelcomeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVWelcomeViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/UserVoice.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UserVoice.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthConsumer.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthConsumer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthRequest.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthSignatureMethod.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthSignatureMethod_HMAC-SHA1.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_HMAC-SHA1.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthSignatureMethod_PLAINTEXT.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_PLAINTEXT.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthToken.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthToken.h -------------------------------------------------------------------------------- /Pods/Headers/Private/uservoice-iphone-sdk/YOAuthUtil.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKAppSettingsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKAppSettingsWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKMultipleValueSelection.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKPSSliderSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKPSTextFieldSpecifierViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSettingsReader.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSettingsStore.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSettingsStoreFile.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSettingsStoreUserDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSlider.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSpecifier.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSpecifierValuesViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKTextField.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.h -------------------------------------------------------------------------------- /Pods/Headers/Public/InAppSettingsKit/IASKViewController.h: -------------------------------------------------------------------------------- 1 | ../../../InAppSettingsKit/InAppSettingsKit/Controllers/IASKViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/Base64Transcoder.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/Crypto/Base64Transcoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HRFormatJSON.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatJSON.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HRFormatterProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatterProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HRGlobal.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRGlobal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HROperationQueue.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HROperationQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HRRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HRResponseDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRResponseDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HRRestModel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HRRestModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/HTTPRiot.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/HTTPRiot/HTTPRiot.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVAccessToken.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVAccessToken.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVArticle.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVArticle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVArticleViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVArticleViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVAttachment.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVBabayaga.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVBabayaga.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVBaseModel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVBaseModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVBaseViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVBaseViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVCalculatingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCalculatingLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVCallback.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCallback.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVCategory.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVClientConfig.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVClientConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVComment.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVComment.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVCommentViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCommentViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVConfig.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UVConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVContactViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVContactViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVCustomField.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVCustomField.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVDefines.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVDeflection.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVDeflection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UVDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVDetailsFormViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVDetailsFormViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVForum.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVForum.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVHelpTopic.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVHelpTopic.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVHelpTopicViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVHelpTopicViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVImageView.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVInitialLoadManager.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVInitialLoadManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVInstantAnswerManager.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVInstantAnswerManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVInstantAnswersViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVInstantAnswersViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVKeyboardUtils.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVKeyboardUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVModelDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVModelDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVNavigationController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVNavigationController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVPostIdeaViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVPostIdeaViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVRequestContext.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVRequestContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVRequestToken.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVRequestToken.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVResponseDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVResponseDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVRootViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVRootViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSession.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSession.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSigninManager.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSigninManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVStyleSheet.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UVStyleSheet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSubdomain.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSubdomain.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSuccessViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuccessViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSuggestion.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuggestion.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSuggestionDetailsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuggestionDetailsViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVSuggestionListViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVSuggestionListViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVTextView.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVTextWithFieldsView.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTextWithFieldsView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVTicket.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTicket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVTruncatingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVTruncatingLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVUser.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVUtils.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVValueSelectViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVValueSelectViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UVWelcomeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Classes/UVWelcomeViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/UserVoice.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Include/UserVoice.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthConsumer.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthConsumer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthRequest.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthSignatureMethod.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthSignatureMethod_HMAC-SHA1.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_HMAC-SHA1.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthSignatureMethod_PLAINTEXT.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_PLAINTEXT.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthToken.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthToken.h -------------------------------------------------------------------------------- /Pods/Headers/Public/uservoice-iphone-sdk/YOAuthUtil.h: -------------------------------------------------------------------------------- 1 | ../../../uservoice-iphone-sdk/Vendor/YOAuth/YOAuthUtil.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKViewController.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsReader.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStore.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreFile.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Models/IASKSpecifier.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/Base.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/Base.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/de.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/de.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/el.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/el.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/en.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/en.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/es.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/es.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/fr.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/fr.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/it.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/it.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/ja.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/ja.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/nl.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/nl.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/pt-PT.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/pt-PT.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/pt.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/pt.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/ru.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/ru.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/sv.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/sv.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/th.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/th.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Resources/tr.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Resources/tr.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSlider.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKSwitch.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.h -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/InAppSettingsKit/Views/IASKTextField.m -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/LICENSE -------------------------------------------------------------------------------- /Pods/InAppSettingsKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/InAppSettingsKit/README.md -------------------------------------------------------------------------------- /Pods/Local Podspecs/uservoice-iphone-sdk.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Local Podspecs/uservoice-iphone-sdk.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/FMDB/FMDB-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/FMDB/FMDB-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/FMDB/FMDB.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/InAppSettingsKit/InAppSettingsKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPi/Pods-SPi.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPi/Pods-SPi.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/Pods-SPiKeyboard/Pods-SPiKeyboard.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/uservoice-iphone-sdk/uservoice-iphone-sdk-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/uservoice-iphone-sdk/uservoice-iphone-sdk-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/uservoice-iphone-sdk/uservoice-iphone-sdk-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/uservoice-iphone-sdk/uservoice-iphone-sdk-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/uservoice-iphone-sdk/uservoice-iphone-sdk.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/Target Support Files/uservoice-iphone-sdk/uservoice-iphone-sdk.xcconfig -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVAccessToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVAccessToken.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVAccessToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVAccessToken.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVArticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVArticle.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVArticle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVArticle.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVArticleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVArticleViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVArticleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVArticleViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVAttachment.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVAttachment.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVBabayaga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVBabayaga.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVBabayaga.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVBabayaga.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVBaseModel.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVBaseModel.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVBaseViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVBaseViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCalculatingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCalculatingLabel.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCalculatingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCalculatingLabel.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCallback.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCallback.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCategory.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCategory.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVClientConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVClientConfig.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVClientConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVClientConfig.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVComment.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVComment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVComment.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCommentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCommentViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCommentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCommentViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVConfig.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVContactViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVContactViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVContactViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVContactViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCustomField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCustomField.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVCustomField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVCustomField.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVDefines.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVDeflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVDeflection.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVDeflection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVDeflection.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVDetailsFormViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVDetailsFormViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVDetailsFormViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVDetailsFormViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVForum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVForum.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVForum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVForum.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVHelpTopic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVHelpTopic.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVHelpTopic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVHelpTopic.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVHelpTopicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVHelpTopicViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVHelpTopicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVHelpTopicViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVImageCache.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVImageCache.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVImageView.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVImageView.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVInitialLoadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVInitialLoadManager.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVInitialLoadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVInitialLoadManager.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVInstantAnswerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVInstantAnswerManager.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVInstantAnswerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVInstantAnswerManager.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVInstantAnswersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVInstantAnswersViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVInstantAnswersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVInstantAnswersViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVKeyboardUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVKeyboardUtils.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVKeyboardUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVKeyboardUtils.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVModelDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVModelDelegate.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVNavigationController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVNavigationController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVPostIdeaViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVPostIdeaViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVPostIdeaViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVPostIdeaViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVRequestContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVRequestContext.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVRequestContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVRequestContext.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVRequestToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVRequestToken.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVRequestToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVRequestToken.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVResponseDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVResponseDelegate.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVResponseDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVResponseDelegate.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVRootViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVRootViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSession.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSession.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSigninManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSigninManager.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSigninManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSigninManager.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVStyleSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVStyleSheet.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSubdomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSubdomain.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSubdomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSubdomain.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuccessViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuccessViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuccessViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuccessViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuggestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuggestion.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuggestion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuggestion.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuggestionDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuggestionDetailsViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuggestionDetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuggestionDetailsViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuggestionListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuggestionListViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVSuggestionListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVSuggestionListViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTextView.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTextView.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTextWithFieldsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTextWithFieldsView.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTextWithFieldsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTextWithFieldsView.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTicket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTicket.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTicket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTicket.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTruncatingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTruncatingLabel.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVTruncatingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVTruncatingLabel.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVUser.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVUser.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVUtils.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVUtils.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVValueSelectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVValueSelectViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVValueSelectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVValueSelectViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVWelcomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVWelcomeViewController.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UVWelcomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UVWelcomeViewController.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Classes/UserVoice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Classes/UserVoice.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Include/UVConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Include/UVConfig.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Include/UVDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Include/UVDelegate.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Include/UVStyleSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Include/UVStyleSheet.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Include/UserVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Include/UserVoice.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/LICENSE.md -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/README.md -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/ca.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/ca.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/cs.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/cs.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/da.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/da.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/de.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/de.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/el.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/el.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/en-GB.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/en-GB.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/en.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/en.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/es.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/es.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/fi.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/fi.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/fr.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/fr.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/hr.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/hr.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/hu.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/hu.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/id.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/id.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/it.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/it.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/ja.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/ja.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/ko.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/ko.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/ms.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/ms.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/nb.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/nb.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/nl.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/nl.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/pl.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/pl.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/pt-PT.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/pt-PT.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/pt.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/pt.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/ro.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/ro.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/ru.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/ru.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/sk.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/sk.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/sv.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/sv.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/th.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/th.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/tr.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/tr.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uk.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uk.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uv_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uv_article.png -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uv_article@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uv_article@2x.png -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uv_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uv_heart.png -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uv_heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uv_heart@2x.png -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uv_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uv_idea.png -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/uv_idea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/uv_idea@2x.png -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/vi.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/vi.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/zh-Hans.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/zh-Hans.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Resources/zh-Hant.lproj/UserVoice.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Resources/zh-Hant.lproj/UserVoice.strings -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatJSON.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatJSON.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/Formatters/HRFormatterProtocol.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRGlobal.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRGlobal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRGlobal.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HROperationQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HROperationQueue.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HROperationQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HROperationQueue.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRequestOperation.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRequestOperation.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRResponseDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRResponseDelegate.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRestModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRestModel.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRestModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HRRestModel.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HTTPRiot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/HTTPRiot/HTTPRiot.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/Crypto/Base64Transcoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/Crypto/Base64Transcoder.c -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/Crypto/Base64Transcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/Crypto/Base64Transcoder.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuth.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthConsumer.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthConsumer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthConsumer.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthRequest.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthRequest.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_HMAC-SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_HMAC-SHA1.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_HMAC-SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_HMAC-SHA1.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_PLAINTEXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_PLAINTEXT.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_PLAINTEXT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthSignatureMethod_PLAINTEXT.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthToken.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthToken.m -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthUtil.h -------------------------------------------------------------------------------- /Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/Pods/uservoice-iphone-sdk/Vendor/YOAuth/YOAuthUtil.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/README.md -------------------------------------------------------------------------------- /SPi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SPi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SPi.xcodeproj/project.xcworkspace/xcshareddata/SPi.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi.xcodeproj/project.xcworkspace/xcshareddata/SPi.xccheckout -------------------------------------------------------------------------------- /SPi.xcodeproj/xcshareddata/xcschemes/SPi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi.xcodeproj/xcshareddata/xcschemes/SPi.xcscheme -------------------------------------------------------------------------------- /SPi.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SPi/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/AppDelegate.swift -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/29@2x.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/29@3x.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/40@2x.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/40@3x.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/60@2x.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/60@3x.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SPi/Images.xcassets/Screenshot tap keyboard settings icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/Screenshot tap keyboard settings icon.imageset/Contents.json -------------------------------------------------------------------------------- /SPi/Images.xcassets/Screenshot tap keyboard settings icon.imageset/screenshot-tap-keyboard-settings-icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/Screenshot tap keyboard settings icon.imageset/screenshot-tap-keyboard-settings-icon-6.png -------------------------------------------------------------------------------- /SPi/Images.xcassets/Screenshot tap keyboard settings icon.imageset/screenshot-tap-keyboard-settings-icon-6p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Images.xcassets/Screenshot tap keyboard settings icon.imageset/screenshot-tap-keyboard-settings-icon-6p.png -------------------------------------------------------------------------------- /SPi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Info.plist -------------------------------------------------------------------------------- /SPi/Resource/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/1024.png -------------------------------------------------------------------------------- /SPi/Resource/29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/29@2x.png -------------------------------------------------------------------------------- /SPi/Resource/29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/29@3x.png -------------------------------------------------------------------------------- /SPi/Resource/40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/40@2x.png -------------------------------------------------------------------------------- /SPi/Resource/40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/40@3x.png -------------------------------------------------------------------------------- /SPi/Resource/60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/60@2x.png -------------------------------------------------------------------------------- /SPi/Resource/60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/60@3x.png -------------------------------------------------------------------------------- /SPi/Resource/icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/icon.sketch -------------------------------------------------------------------------------- /SPi/Resource/screenshot-tap-keyboard-settings-icon/black/screenshot-tap-keyboard-settings-icon-5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/screenshot-tap-keyboard-settings-icon/black/screenshot-tap-keyboard-settings-icon-5s.png -------------------------------------------------------------------------------- /SPi/Resource/screenshot-tap-keyboard-settings-icon/black/screenshot-tap-keyboard-settings-icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/screenshot-tap-keyboard-settings-icon/black/screenshot-tap-keyboard-settings-icon-6.png -------------------------------------------------------------------------------- /SPi/Resource/screenshot-tap-keyboard-settings-icon/black/screenshot-tap-keyboard-settings-icon-6p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/screenshot-tap-keyboard-settings-icon/black/screenshot-tap-keyboard-settings-icon-6p.png -------------------------------------------------------------------------------- /SPi/Resource/screenshot-tap-keyboard-settings-icon/white/screenshot-tap-keyboard-settings-icon-5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/screenshot-tap-keyboard-settings-icon/white/screenshot-tap-keyboard-settings-icon-5s.png -------------------------------------------------------------------------------- /SPi/Resource/screenshot-tap-keyboard-settings-icon/white/screenshot-tap-keyboard-settings-icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/screenshot-tap-keyboard-settings-icon/white/screenshot-tap-keyboard-settings-icon-6.png -------------------------------------------------------------------------------- /SPi/Resource/screenshot-tap-keyboard-settings-icon/white/screenshot-tap-keyboard-settings-icon-6p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Resource/screenshot-tap-keyboard-settings-icon/white/screenshot-tap-keyboard-settings-icon-6p.png -------------------------------------------------------------------------------- /SPi/SPi-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/SPi-Bridging-Header.h -------------------------------------------------------------------------------- /SPi/Settings.bundle/About.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Settings.bundle/About.plist -------------------------------------------------------------------------------- /SPi/Settings.bundle/Acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Settings.bundle/Acknowledgements.plist -------------------------------------------------------------------------------- /SPi/Settings.bundle/Root~iphone.inApp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Settings.bundle/Root~iphone.inApp.plist -------------------------------------------------------------------------------- /SPi/Settings.bundle/Tutorial.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/Settings.bundle/Tutorial.plist -------------------------------------------------------------------------------- /SPi/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/ViewController.swift -------------------------------------------------------------------------------- /SPi/zh-Hans.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPi/zh-Hans.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SPiKeyboard/AdvanceInputHistoryRowCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/AdvanceInputHistoryRowCell.swift -------------------------------------------------------------------------------- /SPiKeyboard/AdvanceInputHistoryRowCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/AdvanceInputHistoryRowCell.xib -------------------------------------------------------------------------------- /SPiKeyboard/AppearanceConfigure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/AppearanceConfigure.swift -------------------------------------------------------------------------------- /SPiKeyboard/Candidate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Candidate.swift -------------------------------------------------------------------------------- /SPiKeyboard/CandidateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/CandidateCell.swift -------------------------------------------------------------------------------- /SPiKeyboard/CandidatesBanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/CandidatesBanner.swift -------------------------------------------------------------------------------- /SPiKeyboard/CandidatesDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/CandidatesDataModel.swift -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-down-black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-down-black.imageset/Contents.json -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-down-black.imageset/arrow-down-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-down-black.imageset/arrow-down-black.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-down-white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-down-white.imageset/Contents.json -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-down-white.imageset/arrow-down-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-down-white.imageset/arrow-down-white.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-up-black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-up-black.imageset/Contents.json -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-up-black.imageset/arrow-up-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-up-black.imageset/arrow-up-black.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-up-white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-up-white.imageset/Contents.json -------------------------------------------------------------------------------- /SPiKeyboard/Images.xcassets/arrow-up-white.imageset/arrow-up-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Images.xcassets/arrow-up-white.imageset/arrow-up-white.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Info.plist -------------------------------------------------------------------------------- /SPiKeyboard/InputHistory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/InputHistory.swift -------------------------------------------------------------------------------- /SPiKeyboard/InputHistoryRowCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/InputHistoryRowCell.swift -------------------------------------------------------------------------------- /SPiKeyboard/InputHistoryTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/InputHistoryTableViewController.swift -------------------------------------------------------------------------------- /SPiKeyboard/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Logger.swift -------------------------------------------------------------------------------- /SPiKeyboard/MyCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/MyCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /SPiKeyboard/MyKeyboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/MyKeyboardViewController.swift -------------------------------------------------------------------------------- /SPiKeyboard/PinYinHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/PinYinHelper.swift -------------------------------------------------------------------------------- /SPiKeyboard/Resource/arrow-down-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Resource/arrow-down-black.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Resource/arrow-down-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Resource/arrow-down-white.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Resource/arrow-up-black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Resource/arrow-up-black.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Resource/arrow-up-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Resource/arrow-up-white.pdf -------------------------------------------------------------------------------- /SPiKeyboard/Resource/keyboard-more-candidates-arrows.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Resource/keyboard-more-candidates-arrows.sketch -------------------------------------------------------------------------------- /SPiKeyboard/SPiKeyboard-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/SPiKeyboard-Bridging-Header.h -------------------------------------------------------------------------------- /SPiKeyboard/Settings.bundle/Root.inApp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/Settings.bundle/Root.inApp.plist -------------------------------------------------------------------------------- /SPiKeyboard/ShuangpinScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/ShuangpinScheme.swift -------------------------------------------------------------------------------- /SPiKeyboard/StringExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/StringExtension.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Catboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Catboard.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/CatboardBanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/CatboardBanner.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/DefaultKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/DefaultKeyboard.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/DefaultSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/DefaultSettings.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/DefaultSettings.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/DefaultSettings.xib -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/DirectionEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/DirectionEnum.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/ExtraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/ExtraView.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/ForwardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/ForwardingView.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/ImageKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/ImageKey.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardConnector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardConnector.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardInputTraits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardInputTraits.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardKey.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardKeyBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardKeyBackground.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardLayout.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardModel.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/KeyboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/KeyboardViewController.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/gear.png -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/gear@2x.png -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Media.xcassets/gear.imageset/gear@3x.png -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Shapes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Shapes.swift -------------------------------------------------------------------------------- /SPiKeyboard/TastyImitationKeyboard/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TastyImitationKeyboard/Utilities.swift -------------------------------------------------------------------------------- /SPiKeyboard/TypingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TypingLabel.swift -------------------------------------------------------------------------------- /SPiKeyboard/TypingString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/TypingString.swift -------------------------------------------------------------------------------- /SPiKeyboard/schemes/小鹤双拼.spscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/schemes/小鹤双拼.spscheme -------------------------------------------------------------------------------- /SPiKeyboard/schemes/微软拼音2003.spscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/schemes/微软拼音2003.spscheme -------------------------------------------------------------------------------- /SPiKeyboard/schemes/拼音加加.spscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/schemes/拼音加加.spscheme -------------------------------------------------------------------------------- /SPiKeyboard/schemes/智能ABC.spscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/schemes/智能ABC.spscheme -------------------------------------------------------------------------------- /SPiKeyboard/schemes/紫光拼音.spscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/schemes/紫光拼音.spscheme -------------------------------------------------------------------------------- /SPiKeyboard/schemes/自然码.spscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiKeyboard/schemes/自然码.spscheme -------------------------------------------------------------------------------- /SPiTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiTests/Info.plist -------------------------------------------------------------------------------- /SPiTests/SPiTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiTests/SPiTests.swift -------------------------------------------------------------------------------- /SPiTests/StringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/SPiTests/StringExtensionTests.swift -------------------------------------------------------------------------------- /ShuangpinTests/GetShengmuTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/ShuangpinTests/GetShengmuTests.swift -------------------------------------------------------------------------------- /ShuangpinTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/ShuangpinTests/Info.plist -------------------------------------------------------------------------------- /ShuangpinTests/ShuangpinSchemeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/ShuangpinTests/ShuangpinSchemeTests.swift -------------------------------------------------------------------------------- /ShuangpinTests/ShuangpinTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/ShuangpinTests/ShuangpinTests.swift -------------------------------------------------------------------------------- /before_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/before_build.sh -------------------------------------------------------------------------------- /check_build_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/check_build_number.py -------------------------------------------------------------------------------- /check_no_changes_after_last_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/check_no_changes_after_last_commit.sh -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/pre-commit -------------------------------------------------------------------------------- /update_build_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/update_build_number.py -------------------------------------------------------------------------------- /update_candidates_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/update_candidates_database.sh -------------------------------------------------------------------------------- /update_candidates_database_if_necessary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/update_candidates_database_if_necessary.py -------------------------------------------------------------------------------- /update_git_pre_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoc/spi/HEAD/update_git_pre_commit.sh --------------------------------------------------------------------------------