├── .DS_Store ├── .gitignore ├── IntroductionExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Ryan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── matthewyork.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ │ └── shams.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Ryan.xcuserdatad │ └── xcschemes │ │ ├── IntroductionExample.xcscheme │ │ └── xcschememanagement.plist │ ├── matthewyork.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── IntroductionExample.xcscheme │ │ └── xcschememanagement.plist │ └── shams.xcuserdatad │ └── xcschemes │ ├── IntroductionExample.xcscheme │ └── xcschememanagement.plist ├── IntroductionExample ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── IntroductionExample-Info.plist ├── IntroductionExample-Prefix.pch ├── MYAppDelegate.h ├── MYAppDelegate.m ├── MYIntroductionPanel.h ├── MYIntroductionPanel.m ├── MYIntroductionView.h ├── MYIntroductionView.m ├── MYViewController.h ├── MYViewController.m ├── SampleBackground.png ├── SampleHeaderImage.png ├── SampleImage1.png ├── SampleImage2.png ├── en.lproj │ ├── InfoPlist.strings │ └── MYViewController.xib └── main.m ├── LICENSE ├── MYIntroduction.podspec ├── README.md └── Resources └── Images └── IntercedeScreenshot.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/Ryan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/Ryan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/matthewyork.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/matthewyork.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/matthewyork.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/matthewyork.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/shams.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/project.xcworkspace/xcuserdata/shams.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/IntroductionExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/IntroductionExample.xcscheme -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/matthewyork.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/matthewyork.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/matthewyork.xcuserdatad/xcschemes/IntroductionExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/matthewyork.xcuserdatad/xcschemes/IntroductionExample.xcscheme -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/matthewyork.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/matthewyork.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/shams.xcuserdatad/xcschemes/IntroductionExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/shams.xcuserdatad/xcschemes/IntroductionExample.xcscheme -------------------------------------------------------------------------------- /IntroductionExample.xcodeproj/xcuserdata/shams.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample.xcodeproj/xcuserdata/shams.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IntroductionExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/Default-568h@2x.png -------------------------------------------------------------------------------- /IntroductionExample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/Default.png -------------------------------------------------------------------------------- /IntroductionExample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/Default@2x.png -------------------------------------------------------------------------------- /IntroductionExample/IntroductionExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/IntroductionExample-Info.plist -------------------------------------------------------------------------------- /IntroductionExample/IntroductionExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/IntroductionExample-Prefix.pch -------------------------------------------------------------------------------- /IntroductionExample/MYAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYAppDelegate.h -------------------------------------------------------------------------------- /IntroductionExample/MYAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYAppDelegate.m -------------------------------------------------------------------------------- /IntroductionExample/MYIntroductionPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYIntroductionPanel.h -------------------------------------------------------------------------------- /IntroductionExample/MYIntroductionPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYIntroductionPanel.m -------------------------------------------------------------------------------- /IntroductionExample/MYIntroductionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYIntroductionView.h -------------------------------------------------------------------------------- /IntroductionExample/MYIntroductionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYIntroductionView.m -------------------------------------------------------------------------------- /IntroductionExample/MYViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYViewController.h -------------------------------------------------------------------------------- /IntroductionExample/MYViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/MYViewController.m -------------------------------------------------------------------------------- /IntroductionExample/SampleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/SampleBackground.png -------------------------------------------------------------------------------- /IntroductionExample/SampleHeaderImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/SampleHeaderImage.png -------------------------------------------------------------------------------- /IntroductionExample/SampleImage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/SampleImage1.png -------------------------------------------------------------------------------- /IntroductionExample/SampleImage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/SampleImage2.png -------------------------------------------------------------------------------- /IntroductionExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IntroductionExample/en.lproj/MYViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/en.lproj/MYViewController.xib -------------------------------------------------------------------------------- /IntroductionExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/IntroductionExample/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /MYIntroduction.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/MYIntroduction.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Images/IntercedeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewYork/iPhone-IntroductionTutorial/HEAD/Resources/Images/IntercedeScreenshot.png --------------------------------------------------------------------------------