├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── Water Waves.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── Water Waves.xccheckout │ └── xcuserdata │ │ └── veari_mac02.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── veari_mac02.xcuserdatad │ └── xcschemes │ ├── Water Waves.xcscheme │ └── xcschememanagement.plist ├── Water Waves ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── VWWAppDelegate.h ├── VWWAppDelegate.m ├── VWWViewController.h ├── VWWViewController.m ├── VWWWaterView.h ├── VWWWaterView.m ├── Water Waves-Info.plist ├── Water Waves-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── Water WavesTests ├── Water WavesTests-Info.plist ├── Water_WavesTests.m └── en.lproj │ └── InfoPlist.strings └── demo.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/README.md -------------------------------------------------------------------------------- /Water Waves.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Water Waves.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Water Waves.xcodeproj/project.xcworkspace/xcshareddata/Water Waves.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves.xcodeproj/project.xcworkspace/xcshareddata/Water Waves.xccheckout -------------------------------------------------------------------------------- /Water Waves.xcodeproj/project.xcworkspace/xcuserdata/veari_mac02.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves.xcodeproj/project.xcworkspace/xcuserdata/veari_mac02.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Water Waves.xcodeproj/xcuserdata/veari_mac02.xcuserdatad/xcschemes/Water Waves.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves.xcodeproj/xcuserdata/veari_mac02.xcuserdatad/xcschemes/Water Waves.xcscheme -------------------------------------------------------------------------------- /Water Waves.xcodeproj/xcuserdata/veari_mac02.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves.xcodeproj/xcuserdata/veari_mac02.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Water Waves/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Water Waves/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Water Waves/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Water Waves/VWWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/VWWAppDelegate.h -------------------------------------------------------------------------------- /Water Waves/VWWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/VWWAppDelegate.m -------------------------------------------------------------------------------- /Water Waves/VWWViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/VWWViewController.h -------------------------------------------------------------------------------- /Water Waves/VWWViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/VWWViewController.m -------------------------------------------------------------------------------- /Water Waves/VWWWaterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/VWWWaterView.h -------------------------------------------------------------------------------- /Water Waves/VWWWaterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/VWWWaterView.m -------------------------------------------------------------------------------- /Water Waves/Water Waves-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/Water Waves-Info.plist -------------------------------------------------------------------------------- /Water Waves/Water Waves-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/Water Waves-Prefix.pch -------------------------------------------------------------------------------- /Water Waves/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Water Waves/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water Waves/main.m -------------------------------------------------------------------------------- /Water WavesTests/Water WavesTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water WavesTests/Water WavesTests-Info.plist -------------------------------------------------------------------------------- /Water WavesTests/Water_WavesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/Water WavesTests/Water_WavesTests.m -------------------------------------------------------------------------------- /Water WavesTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiweiDong/WaterWave/HEAD/demo.gif --------------------------------------------------------------------------------