├── .gitignore ├── .travis.yml ├── Example ├── JXReviewController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── JXReviewController-Example.xcscheme ├── JXReviewController.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── JXReviewController │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── JXReviewController.podspec ├── JXReviewController ├── Assets │ └── .gitkeep ├── Classes │ ├── .gitkeep │ ├── JXReviewController.swift │ ├── JXReviewControllerButton.swift │ ├── JXReviewControllerDelegate.swift │ └── JXReviewControllerStarCell.swift ├── en.lproj │ └── Localizable.strings ├── ja-JP.lproj │ └── Localizable.strings ├── zh-HK.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/JXReviewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JXReviewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JXReviewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/JXReviewController.xcodeproj/xcshareddata/xcschemes/JXReviewController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController.xcodeproj/xcshareddata/xcschemes/JXReviewController-Example.xcscheme -------------------------------------------------------------------------------- /Example/JXReviewController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JXReviewController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/JXReviewController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController/AppDelegate.swift -------------------------------------------------------------------------------- /Example/JXReviewController/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/JXReviewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/JXReviewController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JXReviewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController/Info.plist -------------------------------------------------------------------------------- /Example/JXReviewController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/JXReviewController/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /JXReviewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController.podspec -------------------------------------------------------------------------------- /JXReviewController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JXReviewController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JXReviewController/Classes/JXReviewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/Classes/JXReviewController.swift -------------------------------------------------------------------------------- /JXReviewController/Classes/JXReviewControllerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/Classes/JXReviewControllerButton.swift -------------------------------------------------------------------------------- /JXReviewController/Classes/JXReviewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/Classes/JXReviewControllerDelegate.swift -------------------------------------------------------------------------------- /JXReviewController/Classes/JXReviewControllerStarCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/Classes/JXReviewControllerStarCell.swift -------------------------------------------------------------------------------- /JXReviewController/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /JXReviewController/ja-JP.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/ja-JP.lproj/Localizable.strings -------------------------------------------------------------------------------- /JXReviewController/zh-HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/zh-HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /JXReviewController/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /JXReviewController/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/JXReviewController/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swordray/JXReviewController/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------