├── .DS_Store ├── .gitignore ├── ClipCorner.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ClipCorner ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── 75_69.imageset │ │ ├── Contents.json │ │ └── tab_ico_home_pressed@3x.png │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── lena.imageset │ │ ├── Contents.json │ │ └── lena.png │ └── lena2.imageset │ │ ├── Contents.json │ │ └── lena2.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/.gitignore -------------------------------------------------------------------------------- /ClipCorner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ClipCorner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ClipCorner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/AppDelegate.h -------------------------------------------------------------------------------- /ClipCorner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/AppDelegate.m -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/75_69.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/75_69.imageset/Contents.json -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/75_69.imageset/tab_ico_home_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/75_69.imageset/tab_ico_home_pressed@3x.png -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/lena.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/lena.imageset/Contents.json -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/lena.imageset/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/lena.imageset/lena.png -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/lena2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/lena2.imageset/Contents.json -------------------------------------------------------------------------------- /ClipCorner/Assets.xcassets/lena2.imageset/lena2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Assets.xcassets/lena2.imageset/lena2.png -------------------------------------------------------------------------------- /ClipCorner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ClipCorner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ClipCorner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/Info.plist -------------------------------------------------------------------------------- /ClipCorner/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/ViewController.h -------------------------------------------------------------------------------- /ClipCorner/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/ViewController.m -------------------------------------------------------------------------------- /ClipCorner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/ClipCorner/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehe520/ClipCorner/HEAD/README.md --------------------------------------------------------------------------------