├── Example ├── Tutorial Category Demo.xcodeproj │ └── project.pbxproj ├── Tutorial Category │ ├── DKAppDelegate.h │ ├── DKAppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Tutorial Category Demo-Info.plist │ ├── Tutorial Category Demo-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tutorial CategoryTests │ ├── Tutorial Category DemoTests-Info.plist │ ├── Tutorial_CategoryTests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE.txt ├── README.md ├── UIlViewController+Tutorial ├── DKCircleImageView.h ├── DKCircleImageView.m ├── UIViewController+Tutorial.h └── UIViewController+Tutorial.m └── example.gif /Example/Tutorial Category Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Tutorial Category/DKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/DKAppDelegate.h -------------------------------------------------------------------------------- /Example/Tutorial Category/DKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/DKAppDelegate.m -------------------------------------------------------------------------------- /Example/Tutorial Category/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Tutorial Category/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Tutorial Category/Tutorial Category Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/Tutorial Category Demo-Info.plist -------------------------------------------------------------------------------- /Example/Tutorial Category/Tutorial Category Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/Tutorial Category Demo-Prefix.pch -------------------------------------------------------------------------------- /Example/Tutorial Category/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tutorial Category/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial Category/main.m -------------------------------------------------------------------------------- /Example/Tutorial CategoryTests/Tutorial Category DemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial CategoryTests/Tutorial Category DemoTests-Info.plist -------------------------------------------------------------------------------- /Example/Tutorial CategoryTests/Tutorial_CategoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/Example/Tutorial CategoryTests/Tutorial_CategoryTests.m -------------------------------------------------------------------------------- /Example/Tutorial CategoryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /UIlViewController+Tutorial/DKCircleImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/UIlViewController+Tutorial/DKCircleImageView.h -------------------------------------------------------------------------------- /UIlViewController+Tutorial/DKCircleImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/UIlViewController+Tutorial/DKCircleImageView.m -------------------------------------------------------------------------------- /UIlViewController+Tutorial/UIViewController+Tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/UIlViewController+Tutorial/UIViewController+Tutorial.h -------------------------------------------------------------------------------- /UIlViewController+Tutorial/UIViewController+Tutorial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/UIlViewController+Tutorial/UIViewController+Tutorial.m -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronik/UIViewController-Tutorial/HEAD/example.gif --------------------------------------------------------------------------------