├── .gitignore ├── README.md ├── core-background.xcodeproj ├── .LSOverride ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── core-background.xccheckout │ └── xcuserdata │ │ └── justinmfischer.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── justinmfischer.xcuserdatad │ └── xcschemes │ ├── core-background.xcscheme │ └── xcschememanagement.plist └── core-background ├── AppDelegate.h ├── AppDelegate.m ├── CBG ├── CBG.h ├── CBGConstants.h ├── CBGFlickrManager.h ├── CBGFlickrManager.m ├── CBGLocationManager.h ├── CBGLocationManager.m ├── CBGPhotos.h ├── CBGPhotos.m ├── CBGStockPhotoManager.h ├── CBGStockPhotoManager.m ├── CBGUtil.h ├── CBGUtil.m ├── Categories │ ├── UIImage+Alpha.h │ ├── UIImage+Alpha.m │ ├── UIImage+ImageEffects.h │ ├── UIImage+ImageEffects.m │ ├── UIImage+Resize.h │ ├── UIImage+Resize.m │ ├── UIImage+RoundedCorner.h │ └── UIImage+RoundedCorner.m ├── ObjectiveFlickr │ ├── LFWebAPIKit │ │ ├── LFHTTPRequest.h │ │ ├── LFHTTPRequest.m │ │ ├── LFSiteReachability.h │ │ ├── LFSiteReachability.m │ │ ├── LFWebAPIKit.h │ │ ├── NSData+LFHTTPFormExtensions.h │ │ └── NSData+LFHTTPFormExtensions.m │ ├── OFUtilities.h │ ├── OFUtilities.m │ ├── OFXMLMapper.h │ ├── OFXMLMapper.m │ ├── ObjectiveFlickr.h │ └── ObjectiveFlickr.m └── StockPhotos │ ├── 000-StockPhoto-320x568.png │ ├── 000-StockPhoto-320x568@2x.png │ ├── 001-StockPhoto-320x568.png │ ├── 001-StockPhoto-320x568@2x.png │ ├── 002-StockPhoto-320x568.png │ ├── 002-StockPhoto-320x568@2x.png │ ├── 003-StockPhoto-320x568.png │ ├── 003-StockPhoto-320x568@2x.png │ ├── 004-StockPhoto-320x568.png │ ├── 004-StockPhoto-320x568@2x.png │ ├── 005-StockPhoto-320x568.png │ ├── 005-StockPhoto-320x568@2x.png │ ├── 006-StockPhoto-320x568.png │ ├── 006-StockPhoto-320x568@2x.png │ ├── 007-StockPhoto-320x568.png │ └── 007-StockPhoto-320x568@2x.png ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── Icon-57x57.png ├── Icon-57x57@2x.png ├── ViewController.h ├── ViewController.m ├── core-background-Info.plist ├── core-background-Prefix.pch ├── en.lproj ├── InfoPlist.strings └── MainStoryboard.storyboard └── main.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/README.md -------------------------------------------------------------------------------- /core-background.xcodeproj/.LSOverride: -------------------------------------------------------------------------------- 1 | /Applications/Xcode.app -------------------------------------------------------------------------------- /core-background.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /core-background.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /core-background.xcodeproj/project.xcworkspace/xcshareddata/core-background.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background.xcodeproj/project.xcworkspace/xcshareddata/core-background.xccheckout -------------------------------------------------------------------------------- /core-background.xcodeproj/project.xcworkspace/xcuserdata/justinmfischer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background.xcodeproj/project.xcworkspace/xcuserdata/justinmfischer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /core-background.xcodeproj/xcuserdata/justinmfischer.xcuserdatad/xcschemes/core-background.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background.xcodeproj/xcuserdata/justinmfischer.xcuserdatad/xcschemes/core-background.xcscheme -------------------------------------------------------------------------------- /core-background.xcodeproj/xcuserdata/justinmfischer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background.xcodeproj/xcuserdata/justinmfischer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /core-background/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/AppDelegate.h -------------------------------------------------------------------------------- /core-background/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/AppDelegate.m -------------------------------------------------------------------------------- /core-background/CBG/CBG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBG.h -------------------------------------------------------------------------------- /core-background/CBG/CBGConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGConstants.h -------------------------------------------------------------------------------- /core-background/CBG/CBGFlickrManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGFlickrManager.h -------------------------------------------------------------------------------- /core-background/CBG/CBGFlickrManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGFlickrManager.m -------------------------------------------------------------------------------- /core-background/CBG/CBGLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGLocationManager.h -------------------------------------------------------------------------------- /core-background/CBG/CBGLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGLocationManager.m -------------------------------------------------------------------------------- /core-background/CBG/CBGPhotos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGPhotos.h -------------------------------------------------------------------------------- /core-background/CBG/CBGPhotos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGPhotos.m -------------------------------------------------------------------------------- /core-background/CBG/CBGStockPhotoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGStockPhotoManager.h -------------------------------------------------------------------------------- /core-background/CBG/CBGStockPhotoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGStockPhotoManager.m -------------------------------------------------------------------------------- /core-background/CBG/CBGUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGUtil.h -------------------------------------------------------------------------------- /core-background/CBG/CBGUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/CBGUtil.m -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+Alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+Alpha.h -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+Alpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+Alpha.m -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+Resize.h -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+Resize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+Resize.m -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+RoundedCorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+RoundedCorner.h -------------------------------------------------------------------------------- /core-background/CBG/Categories/UIImage+RoundedCorner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/Categories/UIImage+RoundedCorner.m -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFHTTPRequest.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFHTTPRequest.m -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFSiteReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFSiteReachability.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFSiteReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFSiteReachability.m -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFWebAPIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/LFWebAPIKit.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/NSData+LFHTTPFormExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/NSData+LFHTTPFormExtensions.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/LFWebAPIKit/NSData+LFHTTPFormExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/LFWebAPIKit/NSData+LFHTTPFormExtensions.m -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/OFUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/OFUtilities.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/OFUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/OFUtilities.m -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/OFXMLMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/OFXMLMapper.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/OFXMLMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/OFXMLMapper.m -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/ObjectiveFlickr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/ObjectiveFlickr.h -------------------------------------------------------------------------------- /core-background/CBG/ObjectiveFlickr/ObjectiveFlickr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/ObjectiveFlickr/ObjectiveFlickr.m -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/000-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/000-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/000-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/000-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/001-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/001-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/001-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/001-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/002-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/002-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/002-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/002-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/003-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/003-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/003-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/003-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/004-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/004-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/004-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/004-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/005-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/005-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/005-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/005-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/006-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/006-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/006-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/006-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/007-StockPhoto-320x568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/007-StockPhoto-320x568.png -------------------------------------------------------------------------------- /core-background/CBG/StockPhotos/007-StockPhoto-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/CBG/StockPhotos/007-StockPhoto-320x568@2x.png -------------------------------------------------------------------------------- /core-background/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/Default-568h@2x.png -------------------------------------------------------------------------------- /core-background/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/Default.png -------------------------------------------------------------------------------- /core-background/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/Default@2x.png -------------------------------------------------------------------------------- /core-background/Icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/Icon-57x57.png -------------------------------------------------------------------------------- /core-background/Icon-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/Icon-57x57@2x.png -------------------------------------------------------------------------------- /core-background/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/ViewController.h -------------------------------------------------------------------------------- /core-background/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/ViewController.m -------------------------------------------------------------------------------- /core-background/core-background-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/core-background-Info.plist -------------------------------------------------------------------------------- /core-background/core-background-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/core-background-Prefix.pch -------------------------------------------------------------------------------- /core-background/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /core-background/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /core-background/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmfischer/core-background/HEAD/core-background/main.m --------------------------------------------------------------------------------