├── .gitignore ├── Picture ├── g0.gif └── g1.gif ├── README.md └── STPhotoKit ├── STPhotoKit.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── STPhotoKit ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── STConfig ├── STConfig.h ├── STConst.h ├── STConst.m ├── STUI.h ├── STUI.m ├── UIImage+ST.h ├── UIImage+ST.m ├── UIView+ST.h └── UIView+ST.m ├── STPhotoKit ├── STPhotoKitController.h ├── STPhotoKitController.m ├── UIImagePickerController+ST.h └── UIImagePickerController+ST.m ├── ViewController.h ├── ViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Picture/g0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/Picture/g0.gif -------------------------------------------------------------------------------- /Picture/g1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/Picture/g1.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/README.md -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/AppDelegate.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/AppDelegate.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/Info.plist -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/STConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/STConfig.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/STConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/STConst.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/STConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/STConst.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/STUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/STUI.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/STUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/STUI.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/UIImage+ST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/UIImage+ST.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/UIImage+ST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/UIImage+ST.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/UIView+ST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/UIView+ST.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STConfig/UIView+ST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STConfig/UIView+ST.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STPhotoKit/STPhotoKitController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STPhotoKit/STPhotoKitController.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STPhotoKit/STPhotoKitController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STPhotoKit/STPhotoKitController.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STPhotoKit/UIImagePickerController+ST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STPhotoKit/UIImagePickerController+ST.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/STPhotoKit/UIImagePickerController+ST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/STPhotoKit/UIImagePickerController+ST.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/ViewController.h -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/ViewController.m -------------------------------------------------------------------------------- /STPhotoKit/STPhotoKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STPhotoKit/HEAD/STPhotoKit/STPhotoKit/main.m --------------------------------------------------------------------------------