├── README.md ├── TopApps.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── vinodh.xcuserdatad │ └── xcschemes │ ├── TopApps.xcscheme │ └── xcschememanagement.plist ├── TopApps ├── App.h ├── App.m ├── AppCell.h ├── AppCell.m ├── AppDelegate.h ├── AppDelegate.m ├── AppDetailViewController.h ├── AppDetailViewController.m ├── AppListViewController.h ├── AppListViewController.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── DataManager.h ├── DataManager.m ├── DescriptionCell.h ├── DescriptionCell.m ├── ImageCell.h ├── ImageCell.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon2X.png │ │ ├── AppIcon3X.png │ │ └── Contents.json │ ├── PlaceHolderBG.imageset │ │ ├── Contents.json │ │ ├── PlaceHolderBG@1x.png │ │ ├── PlaceHolderBG@2X.png │ │ └── PlaceHolderBG@3x.png │ └── appLogo.imageset │ │ ├── AppIcon3X.png │ │ └── Contents.json ├── ImagesViewController.h ├── ImagesViewController.m ├── Info.plist ├── InformationCell.h ├── InformationCell.m ├── ParallaxHeaderView.h ├── ParallaxHeaderView.m ├── ScreenShotsCell.h ├── ScreenShotsCell.m ├── TopApps.entitlements ├── UIImageView+Networking.h ├── UIImageView+Networking.m └── main.m └── TopAppsTests ├── Info.plist └── TopAppsTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/README.md -------------------------------------------------------------------------------- /TopApps.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TopApps.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TopApps.xcodeproj/xcuserdata/vinodh.xcuserdatad/xcschemes/TopApps.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps.xcodeproj/xcuserdata/vinodh.xcuserdatad/xcschemes/TopApps.xcscheme -------------------------------------------------------------------------------- /TopApps.xcodeproj/xcuserdata/vinodh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps.xcodeproj/xcuserdata/vinodh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TopApps/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/App.h -------------------------------------------------------------------------------- /TopApps/App.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/App.m -------------------------------------------------------------------------------- /TopApps/AppCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppCell.h -------------------------------------------------------------------------------- /TopApps/AppCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppCell.m -------------------------------------------------------------------------------- /TopApps/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppDelegate.h -------------------------------------------------------------------------------- /TopApps/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppDelegate.m -------------------------------------------------------------------------------- /TopApps/AppDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppDetailViewController.h -------------------------------------------------------------------------------- /TopApps/AppDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppDetailViewController.m -------------------------------------------------------------------------------- /TopApps/AppListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppListViewController.h -------------------------------------------------------------------------------- /TopApps/AppListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/AppListViewController.m -------------------------------------------------------------------------------- /TopApps/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TopApps/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TopApps/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/DataManager.h -------------------------------------------------------------------------------- /TopApps/DataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/DataManager.m -------------------------------------------------------------------------------- /TopApps/DescriptionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/DescriptionCell.h -------------------------------------------------------------------------------- /TopApps/DescriptionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/DescriptionCell.m -------------------------------------------------------------------------------- /TopApps/ImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ImageCell.h -------------------------------------------------------------------------------- /TopApps/ImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ImageCell.m -------------------------------------------------------------------------------- /TopApps/Images.xcassets/AppIcon.appiconset/AppIcon2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/AppIcon.appiconset/AppIcon2X.png -------------------------------------------------------------------------------- /TopApps/Images.xcassets/AppIcon.appiconset/AppIcon3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/AppIcon.appiconset/AppIcon3X.png -------------------------------------------------------------------------------- /TopApps/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TopApps/Images.xcassets/PlaceHolderBG.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/PlaceHolderBG.imageset/Contents.json -------------------------------------------------------------------------------- /TopApps/Images.xcassets/PlaceHolderBG.imageset/PlaceHolderBG@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/PlaceHolderBG.imageset/PlaceHolderBG@1x.png -------------------------------------------------------------------------------- /TopApps/Images.xcassets/PlaceHolderBG.imageset/PlaceHolderBG@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/PlaceHolderBG.imageset/PlaceHolderBG@2X.png -------------------------------------------------------------------------------- /TopApps/Images.xcassets/PlaceHolderBG.imageset/PlaceHolderBG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/PlaceHolderBG.imageset/PlaceHolderBG@3x.png -------------------------------------------------------------------------------- /TopApps/Images.xcassets/appLogo.imageset/AppIcon3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/appLogo.imageset/AppIcon3X.png -------------------------------------------------------------------------------- /TopApps/Images.xcassets/appLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Images.xcassets/appLogo.imageset/Contents.json -------------------------------------------------------------------------------- /TopApps/ImagesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ImagesViewController.h -------------------------------------------------------------------------------- /TopApps/ImagesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ImagesViewController.m -------------------------------------------------------------------------------- /TopApps/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/Info.plist -------------------------------------------------------------------------------- /TopApps/InformationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/InformationCell.h -------------------------------------------------------------------------------- /TopApps/InformationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/InformationCell.m -------------------------------------------------------------------------------- /TopApps/ParallaxHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ParallaxHeaderView.h -------------------------------------------------------------------------------- /TopApps/ParallaxHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ParallaxHeaderView.m -------------------------------------------------------------------------------- /TopApps/ScreenShotsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ScreenShotsCell.h -------------------------------------------------------------------------------- /TopApps/ScreenShotsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/ScreenShotsCell.m -------------------------------------------------------------------------------- /TopApps/TopApps.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/TopApps.entitlements -------------------------------------------------------------------------------- /TopApps/UIImageView+Networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/UIImageView+Networking.h -------------------------------------------------------------------------------- /TopApps/UIImageView+Networking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/UIImageView+Networking.m -------------------------------------------------------------------------------- /TopApps/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopApps/main.m -------------------------------------------------------------------------------- /TopAppsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopAppsTests/Info.plist -------------------------------------------------------------------------------- /TopAppsTests/TopAppsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/UIImageView-Async-download/HEAD/TopAppsTests/TopAppsTests.m --------------------------------------------------------------------------------