├── .gitattributes ├── .gitignore ├── Classes ├── AppDelegate.h ├── AppDelegate.m ├── MBSectionVC.h ├── MBSectionVC.m ├── MyViewController.h ├── MyViewController.m ├── Utilities │ ├── Alerts │ │ ├── PSAlertView.h │ │ └── PSAlertView.m │ ├── Controls │ │ ├── UICheckBox.h │ │ └── UICheckBox.m │ ├── Global Includes │ │ ├── Constants.h │ │ └── Macros.h │ ├── HTTP Requests │ │ ├── ASIAuthenticationDialog.h │ │ ├── ASIAuthenticationDialog.m │ │ ├── ASICacheDelegate.h │ │ ├── ASIDownloadCache.h │ │ ├── ASIDownloadCache.m │ │ ├── ASIFormDataRequest.h │ │ ├── ASIFormDataRequest.m │ │ ├── ASIHTTPRequest.h │ │ ├── ASIHTTPRequest.m │ │ ├── ASIHTTPRequestConfig.h │ │ ├── ASIHTTPRequestDelegate.h │ │ ├── ASIInputStream.h │ │ ├── ASIInputStream.m │ │ ├── ASINetworkQueue.h │ │ ├── ASINetworkQueue.m │ │ ├── ASIProgressDelegate.h │ │ ├── Reachability.h │ │ └── Reachability.m │ ├── ImageHelper.h │ ├── ImageHelper.m │ ├── Logging │ │ ├── GTMDefines.h │ │ ├── GTMGarbageCollection.h │ │ ├── GTMLogger.h │ │ └── GTMLogger.m │ ├── MBDataRequest.h │ ├── MBDataRequest.m │ ├── MBDataRequestDelegate.h │ ├── Object Additions │ │ ├── NSString-TruncateToWidth.h │ │ ├── NSString-TruncateToWidth.m │ │ ├── UIColor-Components.h │ │ ├── UIColor-Components.m │ │ ├── UIDevice-Helper.h │ │ └── UIDevice-Helper.m │ ├── Singleton │ │ └── SynthesizeSingleton.h │ └── XML │ │ ├── NSDataAdditions.h │ │ ├── NSDataAdditions.m │ │ ├── TBXML.h │ │ └── TBXML.m ├── View Controller │ ├── MBPageScrollVC.h │ ├── MBPageScrollVC.m │ ├── MBScrollingDelegate.h │ ├── MBScrollingVC.h │ ├── MBScrollingVC.m │ └── Table View Delegates & Data Sources │ │ ├── MBOverviewSectionDelegate.h │ │ ├── MBOverviewSectionDelegate.m │ │ ├── MBSectionDelegate.h │ │ └── MBSectionDelegate.m └── Views │ ├── MBPageScrollView.h │ ├── MBPageScrollView.m │ ├── MBSectionBackgroundView.h │ └── MBSectionBackgroundView.m ├── Info.plist ├── PageScrollView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Matthias.xcuserdatad │ │ └── WorkspaceState.xcuserstate │ │ └── philip.xcuserdatad │ │ └── WorkspaceState.xcuserstate └── xcuserdata │ ├── Matthias.xcuserdatad │ ├── xcbreakpoints │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── Mercedes.xcscheme │ │ ├── PageControl.xcscheme │ │ └── xcschememanagement.plist │ └── philip.xcuserdatad │ └── xcschemes │ ├── Mercedes.xcscheme │ └── xcschememanagement.plist ├── Prefix.pch ├── de.lproj └── Localizable.strings ├── en.lproj ├── Localizable.strings ├── MainWindow.xib └── MyView.xib ├── images ├── backgrounds │ ├── Home-iPad-L.png │ ├── Home-iPad.png │ └── Home.png └── iTunesArtwork └── main.m /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/AppDelegate.m -------------------------------------------------------------------------------- /Classes/MBSectionVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/MBSectionVC.h -------------------------------------------------------------------------------- /Classes/MBSectionVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/MBSectionVC.m -------------------------------------------------------------------------------- /Classes/MyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/MyViewController.h -------------------------------------------------------------------------------- /Classes/MyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/MyViewController.m -------------------------------------------------------------------------------- /Classes/Utilities/Alerts/PSAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Alerts/PSAlertView.h -------------------------------------------------------------------------------- /Classes/Utilities/Alerts/PSAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Alerts/PSAlertView.m -------------------------------------------------------------------------------- /Classes/Utilities/Controls/UICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Controls/UICheckBox.h -------------------------------------------------------------------------------- /Classes/Utilities/Controls/UICheckBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Controls/UICheckBox.m -------------------------------------------------------------------------------- /Classes/Utilities/Global Includes/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Global Includes/Constants.h -------------------------------------------------------------------------------- /Classes/Utilities/Global Includes/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Global Includes/Macros.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIAuthenticationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIAuthenticationDialog.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIAuthenticationDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIAuthenticationDialog.m -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASICacheDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASICacheDelegate.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIDownloadCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIDownloadCache.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIDownloadCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIDownloadCache.m -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIFormDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIFormDataRequest.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIFormDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIFormDataRequest.m -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIHTTPRequest.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIHTTPRequest.m -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIHTTPRequestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIHTTPRequestConfig.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIHTTPRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIHTTPRequestDelegate.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIInputStream.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIInputStream.m -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASINetworkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASINetworkQueue.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASINetworkQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASINetworkQueue.m -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/ASIProgressDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/ASIProgressDelegate.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/Reachability.h -------------------------------------------------------------------------------- /Classes/Utilities/HTTP Requests/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/HTTP Requests/Reachability.m -------------------------------------------------------------------------------- /Classes/Utilities/ImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/ImageHelper.h -------------------------------------------------------------------------------- /Classes/Utilities/ImageHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/ImageHelper.m -------------------------------------------------------------------------------- /Classes/Utilities/Logging/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Logging/GTMDefines.h -------------------------------------------------------------------------------- /Classes/Utilities/Logging/GTMGarbageCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Logging/GTMGarbageCollection.h -------------------------------------------------------------------------------- /Classes/Utilities/Logging/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Logging/GTMLogger.h -------------------------------------------------------------------------------- /Classes/Utilities/Logging/GTMLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Logging/GTMLogger.m -------------------------------------------------------------------------------- /Classes/Utilities/MBDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/MBDataRequest.h -------------------------------------------------------------------------------- /Classes/Utilities/MBDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/MBDataRequest.m -------------------------------------------------------------------------------- /Classes/Utilities/MBDataRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/MBDataRequestDelegate.h -------------------------------------------------------------------------------- /Classes/Utilities/Object Additions/NSString-TruncateToWidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Object Additions/NSString-TruncateToWidth.h -------------------------------------------------------------------------------- /Classes/Utilities/Object Additions/NSString-TruncateToWidth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Object Additions/NSString-TruncateToWidth.m -------------------------------------------------------------------------------- /Classes/Utilities/Object Additions/UIColor-Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Object Additions/UIColor-Components.h -------------------------------------------------------------------------------- /Classes/Utilities/Object Additions/UIColor-Components.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Object Additions/UIColor-Components.m -------------------------------------------------------------------------------- /Classes/Utilities/Object Additions/UIDevice-Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Object Additions/UIDevice-Helper.h -------------------------------------------------------------------------------- /Classes/Utilities/Object Additions/UIDevice-Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Object Additions/UIDevice-Helper.m -------------------------------------------------------------------------------- /Classes/Utilities/Singleton/SynthesizeSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/Singleton/SynthesizeSingleton.h -------------------------------------------------------------------------------- /Classes/Utilities/XML/NSDataAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/XML/NSDataAdditions.h -------------------------------------------------------------------------------- /Classes/Utilities/XML/NSDataAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/XML/NSDataAdditions.m -------------------------------------------------------------------------------- /Classes/Utilities/XML/TBXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/XML/TBXML.h -------------------------------------------------------------------------------- /Classes/Utilities/XML/TBXML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Utilities/XML/TBXML.m -------------------------------------------------------------------------------- /Classes/View Controller/MBPageScrollVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/MBPageScrollVC.h -------------------------------------------------------------------------------- /Classes/View Controller/MBPageScrollVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/MBPageScrollVC.m -------------------------------------------------------------------------------- /Classes/View Controller/MBScrollingDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/MBScrollingDelegate.h -------------------------------------------------------------------------------- /Classes/View Controller/MBScrollingVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/MBScrollingVC.h -------------------------------------------------------------------------------- /Classes/View Controller/MBScrollingVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/MBScrollingVC.m -------------------------------------------------------------------------------- /Classes/View Controller/Table View Delegates & Data Sources/MBOverviewSectionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/Table View Delegates & Data Sources/MBOverviewSectionDelegate.h -------------------------------------------------------------------------------- /Classes/View Controller/Table View Delegates & Data Sources/MBOverviewSectionDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/Table View Delegates & Data Sources/MBOverviewSectionDelegate.m -------------------------------------------------------------------------------- /Classes/View Controller/Table View Delegates & Data Sources/MBSectionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/Table View Delegates & Data Sources/MBSectionDelegate.h -------------------------------------------------------------------------------- /Classes/View Controller/Table View Delegates & Data Sources/MBSectionDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/View Controller/Table View Delegates & Data Sources/MBSectionDelegate.m -------------------------------------------------------------------------------- /Classes/Views/MBPageScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Views/MBPageScrollView.h -------------------------------------------------------------------------------- /Classes/Views/MBPageScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Views/MBPageScrollView.m -------------------------------------------------------------------------------- /Classes/Views/MBSectionBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Views/MBSectionBackgroundView.h -------------------------------------------------------------------------------- /Classes/Views/MBSectionBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Classes/Views/MBSectionBackgroundView.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Info.plist -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/project.xcworkspace/xcuserdata/Matthias.xcuserdatad/WorkspaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/project.xcworkspace/xcuserdata/Matthias.xcuserdatad/WorkspaceState.xcuserstate -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/project.xcworkspace/xcuserdata/philip.xcuserdatad/WorkspaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/project.xcworkspace/xcuserdata/philip.xcuserdatad/WorkspaceState.xcuserstate -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcbreakpoints/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcbreakpoints/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcschemes/Mercedes.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcschemes/Mercedes.xcscheme -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcschemes/PageControl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcschemes/PageControl.xcscheme -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/xcuserdata/Matthias.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/Mercedes.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/Mercedes.xcscheme -------------------------------------------------------------------------------- /PageScrollView.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/PageScrollView.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/Prefix.pch -------------------------------------------------------------------------------- /de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /en.lproj/MyView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/en.lproj/MyView.xib -------------------------------------------------------------------------------- /images/backgrounds/Home-iPad-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/images/backgrounds/Home-iPad-L.png -------------------------------------------------------------------------------- /images/backgrounds/Home-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/images/backgrounds/Home-iPad.png -------------------------------------------------------------------------------- /images/backgrounds/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/images/backgrounds/Home.png -------------------------------------------------------------------------------- /images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/images/iTunesArtwork -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myell0w/PageScrollView/HEAD/main.m --------------------------------------------------------------------------------