├── README.md ├── expandZoom.xcodeproj └── project.pbxproj └── expandZoom ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── LaraCroft@2x.png ├── ViewController.h ├── ViewController.m ├── en.lproj ├── InfoPlist.strings └── MainStoryboard.storyboard ├── expandZoom-Info.plist ├── expandZoom-Prefix.pch └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/README.md -------------------------------------------------------------------------------- /expandZoom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /expandZoom/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/AppDelegate.h -------------------------------------------------------------------------------- /expandZoom/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/AppDelegate.m -------------------------------------------------------------------------------- /expandZoom/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/Default-568h@2x.png -------------------------------------------------------------------------------- /expandZoom/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/Default.png -------------------------------------------------------------------------------- /expandZoom/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/Default@2x.png -------------------------------------------------------------------------------- /expandZoom/LaraCroft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/LaraCroft@2x.png -------------------------------------------------------------------------------- /expandZoom/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/ViewController.h -------------------------------------------------------------------------------- /expandZoom/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/ViewController.m -------------------------------------------------------------------------------- /expandZoom/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /expandZoom/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /expandZoom/expandZoom-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/expandZoom-Info.plist -------------------------------------------------------------------------------- /expandZoom/expandZoom-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/expandZoom-Prefix.pch -------------------------------------------------------------------------------- /expandZoom/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigang1992/ZGExpandZoomView/HEAD/expandZoom/main.m --------------------------------------------------------------------------------