├── .gitignore ├── JingFM-RoundEffect.xcodeproj └── project.pbxproj ├── JingFM-RoundEffect ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── JingFM-RoundEffect-Info.plist ├── JingFM-RoundEffect-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── Launch.storyboard │ └── MainStoryboard.storyboard └── main.m ├── JingRound ├── JingRoundView.h ├── JingRoundView.m └── image │ ├── pause.png │ └── start.png ├── README.md ├── Screenshot.png └── image ├── background.jpg ├── girl.png └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/.gitignore -------------------------------------------------------------------------------- /JingFM-RoundEffect.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JingFM-RoundEffect/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/AppDelegate.h -------------------------------------------------------------------------------- /JingFM-RoundEffect/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/AppDelegate.m -------------------------------------------------------------------------------- /JingFM-RoundEffect/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JingFM-RoundEffect/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /JingFM-RoundEffect/JingFM-RoundEffect-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/JingFM-RoundEffect-Info.plist -------------------------------------------------------------------------------- /JingFM-RoundEffect/JingFM-RoundEffect-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/JingFM-RoundEffect-Prefix.pch -------------------------------------------------------------------------------- /JingFM-RoundEffect/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/ViewController.h -------------------------------------------------------------------------------- /JingFM-RoundEffect/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/ViewController.m -------------------------------------------------------------------------------- /JingFM-RoundEffect/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JingFM-RoundEffect/en.lproj/Launch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/en.lproj/Launch.storyboard -------------------------------------------------------------------------------- /JingFM-RoundEffect/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /JingFM-RoundEffect/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingFM-RoundEffect/main.m -------------------------------------------------------------------------------- /JingRound/JingRoundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingRound/JingRoundView.h -------------------------------------------------------------------------------- /JingRound/JingRoundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingRound/JingRoundView.m -------------------------------------------------------------------------------- /JingRound/image/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingRound/image/pause.png -------------------------------------------------------------------------------- /JingRound/image/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/JingRound/image/start.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/Screenshot.png -------------------------------------------------------------------------------- /image/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/image/background.jpg -------------------------------------------------------------------------------- /image/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/image/girl.png -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/JingRound/HEAD/image/logo.png --------------------------------------------------------------------------------