├── LICENSE ├── README.md ├── SWImageRotation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── apple.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── apple.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SWImageRotation.xcscheme │ └── xcschememanagement.plist ├── SWImageRotation ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon1.png │ │ ├── icon2.png │ │ ├── icon3.png │ │ ├── icon4.png │ │ ├── icon5.png │ │ └── icon6.png ├── Info.plist ├── UIRotateImageView.h ├── UIRotateImageView.m ├── ViewController.h ├── ViewController.m ├── ic-flip-horizontal.png ├── ic-flip-vertical.png ├── ic-ok.png ├── ic-rotate-left.png ├── ic-rotate-right.png ├── image1.jpg ├── image2.jpg ├── image3.jpg ├── main.m └── rotation.png ├── iOS Simulator Screen Shot 13-May-2015 7.29.29 pm.png ├── iOS Simulator Screen Shot 13-May-2015 7.29.38 pm.png └── iOS Simulator Screen Shot 13-May-2015 7.29.45 pm.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/README.md -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/SWImageRotation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/SWImageRotation.xcscheme -------------------------------------------------------------------------------- /SWImageRotation.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SWImageRotation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/AppDelegate.h -------------------------------------------------------------------------------- /SWImageRotation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/AppDelegate.m -------------------------------------------------------------------------------- /SWImageRotation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SWImageRotation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/icon1.png -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/icon2.png -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/icon3.png -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/icon4.png -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/icon5.png -------------------------------------------------------------------------------- /SWImageRotation/Images.xcassets/AppIcon.appiconset/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Images.xcassets/AppIcon.appiconset/icon6.png -------------------------------------------------------------------------------- /SWImageRotation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/Info.plist -------------------------------------------------------------------------------- /SWImageRotation/UIRotateImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/UIRotateImageView.h -------------------------------------------------------------------------------- /SWImageRotation/UIRotateImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/UIRotateImageView.m -------------------------------------------------------------------------------- /SWImageRotation/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ViewController.h -------------------------------------------------------------------------------- /SWImageRotation/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ViewController.m -------------------------------------------------------------------------------- /SWImageRotation/ic-flip-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ic-flip-horizontal.png -------------------------------------------------------------------------------- /SWImageRotation/ic-flip-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ic-flip-vertical.png -------------------------------------------------------------------------------- /SWImageRotation/ic-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ic-ok.png -------------------------------------------------------------------------------- /SWImageRotation/ic-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ic-rotate-left.png -------------------------------------------------------------------------------- /SWImageRotation/ic-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/ic-rotate-right.png -------------------------------------------------------------------------------- /SWImageRotation/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/image1.jpg -------------------------------------------------------------------------------- /SWImageRotation/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/image2.jpg -------------------------------------------------------------------------------- /SWImageRotation/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/image3.jpg -------------------------------------------------------------------------------- /SWImageRotation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/main.m -------------------------------------------------------------------------------- /SWImageRotation/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/SWImageRotation/rotation.png -------------------------------------------------------------------------------- /iOS Simulator Screen Shot 13-May-2015 7.29.29 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/iOS Simulator Screen Shot 13-May-2015 7.29.29 pm.png -------------------------------------------------------------------------------- /iOS Simulator Screen Shot 13-May-2015 7.29.38 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/iOS Simulator Screen Shot 13-May-2015 7.29.38 pm.png -------------------------------------------------------------------------------- /iOS Simulator Screen Shot 13-May-2015 7.29.45 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpriseWave/SWImageRotation/HEAD/iOS Simulator Screen Shot 13-May-2015 7.29.45 pm.png --------------------------------------------------------------------------------