├── .codecov.yml ├── .gitignore ├── .travis.yml ├── DZNEmptyDataSet.podspec ├── DZNEmptyDataSet ├── Applications │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Application.h │ ├── Application.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@2x~ipad.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-29~ipad.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@2x~ipad.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-40~ipad.png │ │ │ ├── icon-50@2x~ipad.png │ │ │ ├── icon-50~ipad.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@2x~ipad.png │ │ │ ├── icon-72~ipad.png │ │ │ ├── icon-76@2x~ipad.png │ │ │ └── icon-76~ipad.png │ │ ├── Contents.json │ │ ├── LaunchImage-2.launchimage │ │ │ └── Contents.json │ │ ├── LaunchImage-3.launchimage │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x-1.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-hd-plus@2x.png │ │ │ ├── Default-hd@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x-1.png │ │ │ └── Default@2x.png │ │ ├── button_background_foursquare_highlight.imageset │ │ │ ├── Contents.json │ │ │ ├── button_background_foursquare_highlight.png │ │ │ └── button_background_foursquare_highlight@2x.png │ │ ├── button_background_foursquare_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── button_background_foursquare_normal.png │ │ │ └── button_background_foursquare_normal@2x.png │ │ ├── button_background_icloud_highlight.imageset │ │ │ ├── Contents.json │ │ │ ├── button_background_icloud_highlight.png │ │ │ └── button_background_icloud_highlight@2x.png │ │ ├── button_background_icloud_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── button_background_icloud_normal.png │ │ │ └── button_background_icloud_normal@2x.png │ │ ├── button_background_kickstarter_highlight.imageset │ │ │ ├── Contents.json │ │ │ ├── button_background_kickstarter_highlight.png │ │ │ └── button_background_kickstarter_highlight@2x.png │ │ ├── button_background_kickstarter_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── button_background_kickstarter_normal.png │ │ │ └── button_background_kickstarter_normal@2x.png │ │ ├── header_pinterest.imageset │ │ │ ├── Contents.json │ │ │ ├── header_pinterest.png │ │ │ └── header_pinterest@2x.png │ │ ├── header_podcasts.imageset │ │ │ ├── Contents.json │ │ │ ├── header_podcasts.png │ │ │ └── header_podcasts@2x.png │ │ ├── icon_500px.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_500px.png │ │ │ └── icon_500px@2x.png │ │ ├── icon_airbnb.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_airbnb.png │ │ │ └── icon_airbnb@2x.png │ │ ├── icon_appstore.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_appstore.png │ │ │ └── icon_appstore@2x.png │ │ ├── icon_camera.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_camera.png │ │ │ └── icon_camera@2x.png │ │ ├── icon_dropbox.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_dropbox.png │ │ │ └── icon_dropbox@2x.png │ │ ├── icon_facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_facebook.png │ │ │ └── icon_facebook@2x.png │ │ ├── icon_fancy.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_fancy.png │ │ │ └── icon_fancy@2x.png │ │ ├── icon_foursquare.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_foursquare.png │ │ │ └── icon_foursquare@2x.png │ │ ├── icon_icloud.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_icloud.png │ │ │ └── icon_icloud@2x.png │ │ ├── icon_instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_instagram.png │ │ │ └── icon_instagram@2x.png │ │ ├── icon_itunes_connect.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_itunesconnect.png │ │ │ └── icon_itunesconnect@2x.png │ │ ├── icon_kickstarter.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_kickstarter.png │ │ │ └── icon_kickstarter@2x.png │ │ ├── icon_path.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_path.png │ │ │ └── icon_path@2x.png │ │ ├── icon_photos.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_photos.png │ │ │ └── icon_photos@2x.png │ │ ├── icon_pinterest.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_pinterest.png │ │ │ └── icon_pinterest@2x.png │ │ ├── icon_podcasts.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_podcasts.png │ │ │ └── icon_podcasts@2x.png │ │ ├── icon_remote.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_remote.png │ │ │ └── icon_remote@2x.png │ │ ├── icon_safari.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_safari.png │ │ │ └── icon_safari@2x.png │ │ ├── icon_skype.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_skype.png │ │ │ └── icon_skype@2x.png │ │ ├── icon_slack.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_slack.png │ │ │ └── icon_slack@2x.png │ │ ├── icon_tumblr.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_tumblr.png │ │ │ └── icon_tumblr@2x.png │ │ ├── icon_twitter.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_twitter.png │ │ │ └── icon_twitter@2x.png │ │ ├── icon_vesper.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_vesper.png │ │ │ └── icon_vesper@2x.png │ │ ├── icon_videos.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_videos.png │ │ │ └── icon_videos@2x.png │ │ ├── icon_vine.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_vine.png │ │ │ └── icon_vine@2x.png │ │ ├── icon_whatsapp.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_whatsapp.png │ │ │ └── icon_whatsapp@2x.png │ │ ├── icon_wwdc.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_wwdc.png │ │ │ └── icon_wwdc@2x.png │ │ ├── loading_imgBlue_78x78.imageset │ │ │ ├── Contents.json │ │ │ ├── loading_imgBlue_78x78@2x.png │ │ │ └── loading_imgBlue_78x78@3x.png │ │ ├── logo_500px.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_500px.png │ │ │ └── logo_500px@2x.png │ │ ├── logo_airbnb.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_airbnb.png │ │ │ └── logo_airbnb@2x.png │ │ ├── logo_dropbox.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_dropbox.png │ │ │ └── logo_dropbox@2x.png │ │ ├── logo_facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_facebook.png │ │ │ └── logo_facebook@2x.png │ │ ├── logo_fancy.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_fancy.png │ │ │ └── logo_fancy@2x.png │ │ ├── logo_foursquare.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_foursquare.png │ │ │ └── logo_foursquare@2x.png │ │ ├── logo_instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_instagram.png │ │ │ └── logo_instagram@2x.png │ │ ├── logo_kickstarter.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_kickstarter.png │ │ │ └── logo_kickstarter@2x.png │ │ ├── logo_path.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_path.png │ │ │ └── logo_path@2x.png │ │ ├── logo_pinterest.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_pinterest.png │ │ │ └── logo_pinterest@2x.png │ │ ├── logo_skype.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_skype.png │ │ │ └── logo_skype@2x.png │ │ ├── logo_slack.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_slack.png │ │ │ └── logo_slack@2x.png │ │ ├── logo_tumblr.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_tumblr.png │ │ │ └── logo_tumblr@2x.png │ │ ├── logo_twitter.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_twitter.png │ │ │ └── logo_twitter@2x.png │ │ ├── logo_vesper.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_vesper.png │ │ │ └── logo_vesper@2x.png │ │ ├── logo_vine.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_vine.png │ │ │ └── logo_vine@2x.png │ │ ├── placeholder_500px.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_500px.png │ │ │ └── placeholder_500px@2x.png │ │ ├── placeholder_airbnb.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_airbnb.png │ │ │ └── placeholder_airbnb@2x.png │ │ ├── placeholder_appstore.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_appstore.png │ │ │ └── placeholder_appstore@2x.png │ │ ├── placeholder_dropbox.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_dropbox.png │ │ │ └── placeholder_dropbox@2x.png │ │ ├── placeholder_facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_facebook.png │ │ │ └── placeholder_facebook@2x.png │ │ ├── placeholder_fancy.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_fancy.png │ │ │ └── placeholder_fancy@2x.png │ │ ├── placeholder_foursquare.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_foursquare.png │ │ │ └── placeholder_foursquare@2x.png │ │ ├── placeholder_instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_instagram.png │ │ │ └── placeholder_instagram@2x.png │ │ ├── placeholder_itunes_connect.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_itunes_connect.png │ │ │ └── placeholder_itunes_connect@2x.png │ │ ├── placeholder_kickstarter.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_kickstarter.png │ │ │ └── placeholder_kickstarter@2x.png │ │ ├── placeholder_path.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_path.png │ │ │ └── placeholder_path@2x.png │ │ ├── placeholder_remote.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_remote.png │ │ │ └── placeholder_remote@2x.png │ │ ├── placeholder_skype.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_skype.png │ │ │ └── placeholder_skype@2x.png │ │ ├── placeholder_slack.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_slack.png │ │ │ └── placeholder_slack@2x.png │ │ ├── placeholder_tumblr.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_tumblr.png │ │ │ └── placeholder_tumblr@2x.png │ │ ├── placeholder_vesper.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_vesper.png │ │ │ └── placeholder_vesper@2x.png │ │ ├── placeholder_videos.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_videos.png │ │ │ └── placeholder_videos@2x.png │ │ ├── placeholder_vine.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_vine.png │ │ │ └── placeholder_vine@2x.png │ │ └── placeholder_whatsapp.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_whatsapp.png │ │ │ └── placeholder_whatsapp@2x.png │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── Fonts │ │ ├── Ideal Sans │ │ │ └── IdealSans-Book-Pro.otf │ │ └── Lato │ │ │ └── Lato-Regular.ttf │ ├── MainViewController.h │ ├── MainViewController.m │ ├── Supporting Files │ │ ├── Applications-Prefix.pch │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Storyboard.storyboard │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── UIColor+Hexadecimal.h │ ├── UIColor+Hexadecimal.m │ └── applications.json ├── Colors │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-120~car.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@2x~ipad.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-29~ipad.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@2x~ipad.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-40~ipad.png │ │ │ ├── icon-50@2x~ipad.png │ │ │ ├── icon-50~ipad.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@2x~ipad.png │ │ │ ├── icon-72~ipad.png │ │ │ ├── icon-76@2x~ipad.png │ │ │ └── icon-76~ipad.png │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-hd-plus@2x.png │ │ │ ├── Default-hd@2x.png │ │ │ └── Default@2x.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Colors │ │ ├── Colors-Info.plist │ │ ├── Colors-Prefix.pch │ │ ├── System.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-120~car.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@2x~ipad.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-29~ipad.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@2x~ipad.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-40~ipad.png │ │ │ │ ├── icon-50@2x~ipad.png │ │ │ │ ├── icon-50~ipad.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-57@2x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72@2x~ipad.png │ │ │ │ ├── icon-72~ipad.png │ │ │ │ ├── icon-76@2x~ipad.png │ │ │ │ └── icon-76~ipad.png │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-hd-plus@2x.png │ │ │ │ ├── Default-hd@2x.png │ │ │ │ └── Default@2x.png │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── DataSource │ │ ├── Color.h │ │ ├── Color.m │ │ ├── Palette.h │ │ ├── Palette.m │ │ ├── UIColor+Hex.h │ │ ├── UIColor+Hex.m │ │ └── colors.json │ ├── Images.xcassets │ │ ├── empty_placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── empty_placeholder.png │ │ │ └── empty_placeholder@2x.png │ │ ├── search_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── search_icon.png │ │ │ └── search_icon@2x.png │ │ ├── tab_collection.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_collection.png │ │ │ └── tab_collection@2x.png │ │ ├── tab_search.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_search.png │ │ │ └── tab_search@2x.png │ │ └── tab_table.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_table.png │ │ │ └── tab_table@2x.png │ ├── Info.plist │ ├── SearchViewController.h │ ├── SearchViewController.m │ ├── Storyboard.storyboard │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── DZNEmptyDataSet.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── DZNEmptyDataSet.xcscheme │ │ └── DZNEmptyDataSetTests.xcscheme ├── DZNEmptyDataSet.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DZNEmptyDataSet │ ├── DZNEmptyDataSet.h │ └── Info.plist ├── DZNEmptyDataSetTests │ ├── ApplicationsSnapshotTests.m │ ├── Info.plist │ └── ReferenceImages_64 │ │ └── ApplicationsSnapshotTests │ │ ├── testApplicationEmptyDataSets_500px@2x.png │ │ ├── testApplicationEmptyDataSets_Airbnb@2x.png │ │ ├── testApplicationEmptyDataSets_AppStore@2x.png │ │ ├── testApplicationEmptyDataSets_Camera@2x.png │ │ ├── testApplicationEmptyDataSets_Dropbox@2x.png │ │ ├── testApplicationEmptyDataSets_Facebook@2x.png │ │ ├── testApplicationEmptyDataSets_Fancy@2x.png │ │ ├── testApplicationEmptyDataSets_Foursquare@2x.png │ │ ├── testApplicationEmptyDataSets_Instagram@2x.png │ │ ├── testApplicationEmptyDataSets_Kickstarter@2x.png │ │ ├── testApplicationEmptyDataSets_Path@2x.png │ │ ├── testApplicationEmptyDataSets_Photos@2x.png │ │ ├── testApplicationEmptyDataSets_Pinterest@2x.png │ │ ├── testApplicationEmptyDataSets_Podcasts@2x.png │ │ ├── testApplicationEmptyDataSets_Remote@2x.png │ │ ├── testApplicationEmptyDataSets_Safari@2x.png │ │ ├── testApplicationEmptyDataSets_Skype@2x.png │ │ ├── testApplicationEmptyDataSets_Slack@2x.png │ │ ├── testApplicationEmptyDataSets_Tumblr@2x.png │ │ ├── testApplicationEmptyDataSets_Twitter@2x.png │ │ ├── testApplicationEmptyDataSets_Vesper@2x.png │ │ ├── testApplicationEmptyDataSets_Videos@2x.png │ │ ├── testApplicationEmptyDataSets_Vine@2x.png │ │ ├── testApplicationEmptyDataSets_WWDC@2x.png │ │ ├── testApplicationEmptyDataSets_WhatsApp@2x.png │ │ ├── testApplicationEmptyDataSets_iCloud@2x.png │ │ └── testApplicationEmptyDataSets_iTunes_Connect@2x.png ├── EmptyDataSetTests │ └── DZNEmptyDataSetTests-Bridging-Header.h ├── Podfile ├── Podfile.lock └── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Target Support Files │ ├── Pods-DZNEmptyDataSetTests │ │ ├── Pods-DZNEmptyDataSetTests-Info.plist │ │ ├── Pods-DZNEmptyDataSetTests-acknowledgements.markdown │ │ ├── Pods-DZNEmptyDataSetTests-acknowledgements.plist │ │ ├── Pods-DZNEmptyDataSetTests-dummy.m │ │ ├── Pods-DZNEmptyDataSetTests-frameworks.sh │ │ ├── Pods-DZNEmptyDataSetTests-umbrella.h │ │ ├── Pods-DZNEmptyDataSetTests.debug.xcconfig │ │ ├── Pods-DZNEmptyDataSetTests.modulemap │ │ └── Pods-DZNEmptyDataSetTests.release.xcconfig │ ├── Pods-EmptyDataSetTests │ │ ├── Pods-EmptyDataSetTests-Info.plist │ │ ├── Pods-EmptyDataSetTests-acknowledgements.markdown │ │ ├── Pods-EmptyDataSetTests-acknowledgements.plist │ │ ├── Pods-EmptyDataSetTests-dummy.m │ │ ├── Pods-EmptyDataSetTests-frameworks.sh │ │ ├── Pods-EmptyDataSetTests-umbrella.h │ │ ├── Pods-EmptyDataSetTests.debug.xcconfig │ │ ├── Pods-EmptyDataSetTests.modulemap │ │ └── Pods-EmptyDataSetTests.release.xcconfig │ └── iOSSnapshotTestCase │ │ ├── Info.plist │ │ ├── iOSSnapshotTestCase-Info.plist │ │ ├── iOSSnapshotTestCase-dummy.m │ │ ├── iOSSnapshotTestCase-prefix.pch │ │ ├── iOSSnapshotTestCase-umbrella.h │ │ ├── iOSSnapshotTestCase.modulemap │ │ └── iOSSnapshotTestCase.xcconfig │ └── iOSSnapshotTestCase │ ├── FBSnapshotTestCase │ ├── Categories │ │ ├── UIImage+Compare.h │ │ ├── UIImage+Compare.m │ │ ├── UIImage+Diff.h │ │ ├── UIImage+Diff.m │ │ ├── UIImage+Snapshot.h │ │ └── UIImage+Snapshot.m │ ├── FBSnapshotTestCase.h │ ├── FBSnapshotTestCase.m │ ├── FBSnapshotTestCasePlatform.h │ ├── FBSnapshotTestCasePlatform.m │ ├── FBSnapshotTestController.h │ ├── FBSnapshotTestController.m │ └── SwiftSupport.swift │ ├── LICENSE │ └── README.md ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md └── Source ├── UIScrollView+EmptyDataSet.h └── UIScrollView+EmptyDataSet.m /.codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | token: 3 | 4 | coverage: 5 | precision: 2 6 | round: nearest 7 | range: 70...100 8 | ignore: 9 | - ./DZNEmptyDataSet/.* 10 | 11 | status: 12 | project: true 13 | patch: true 14 | changes: false 15 | 16 | comment: 17 | layout: "header, diff, tree, changes" 18 | behavior: default 19 | branches: master 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | profile 14 | *.moved-aside 15 | DerivedData 16 | .idea/ 17 | /.swiftpm 18 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode11.3 2 | language: objective-c 3 | sudo: required 4 | 5 | cache: 6 | - bundler 7 | - cocoapods 8 | 9 | before_install: 10 | - bundle install 11 | #- bundle exec danger 12 | 13 | env: 14 | global: 15 | - LANG=en_US.UTF-8 16 | 17 | - WORKSPACE="DZNEmptyDataSet/DZNEmptyDataSet.xcworkspace" 18 | - IOS_SCHEME="DZNEmptyDataSet" 19 | - IOS_SDK="iphonesimulator13.3" 20 | 21 | matrix: 22 | - DESTINATION="OS=13.3,name=iPhone 8" SDK="$IOS_SDK" SCHEME="$IOS_SCHEME" 23 | 24 | script: 25 | - xcodebuild clean build test -scheme "$SCHEME" -workspace "$WORKSPACE" SDK="$IOS_SDK" -destination "$DESTINATION" -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES 26 | 27 | after_success: 28 | - bash <(curl -s https://codecov.io/bash) 29 | -------------------------------------------------------------------------------- /DZNEmptyDataSet.podspec: -------------------------------------------------------------------------------- 1 | @version = "1.8.1" 2 | 3 | Pod::Spec.new do |s| 4 | s.name = "DZNEmptyDataSet" 5 | s.version = @version 6 | s.summary = "A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display." 7 | s.description = "It will work automatically, by just conforming to DZNEmptyDataSetSource, and returning the data you want to show. The -reloadData call will be observed so the empty dataset will be configured whenever needed." 8 | s.homepage = "https://github.com/dzenbot/DZNEmptyDataSet" 9 | s.license = { :type => 'MIT', :file => 'LICENSE' } 10 | s.author = { "dzenbot" => "iromero@dzen.cl" } 11 | s.ios.deployment_target = '6.0' 12 | s.tvos.deployment_target = '9.0' 13 | s.source = { :git => "https://github.com/dzenbot/DZNEmptyDataSet.git", :tag => "v#{s.version}" } 14 | s.source_files = 'Classes', 'Source/**/*.{h,m}' 15 | s.requires_arc = true 16 | s.framework = "UIKit" 17 | end 18 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/6/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/6/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | #import "MainViewController.h" 11 | 12 | @implementation AppDelegate 13 | 14 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 15 | { 16 | self.window.backgroundColor = [UIColor whiteColor]; 17 | 18 | return YES; 19 | } 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Application.h: -------------------------------------------------------------------------------- 1 | // 2 | // Application.h 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/6/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef NS_ENUM(NSUInteger, ApplicationType) { 12 | 13 | ApplicationTypeUndefined = 0, 14 | 15 | ApplicationType500px = 1, 16 | ApplicationTypeAirbnb, 17 | ApplicationTypeAppstore, 18 | ApplicationTypeCamera, 19 | ApplicationTypeDropbox, 20 | ApplicationTypeFacebook, 21 | ApplicationTypeFancy, 22 | ApplicationTypeFoursquare, 23 | ApplicationTypeiCloud, 24 | ApplicationTypeInstagram, 25 | ApplicationTypeiTunesConnect, 26 | ApplicationTypeKickstarter, 27 | ApplicationTypePath, 28 | ApplicationTypePinterest, 29 | ApplicationTypePhotos, 30 | ApplicationTypePodcasts, 31 | ApplicationTypeRemote, 32 | ApplicationTypeSafari, 33 | ApplicationTypeSkype, 34 | ApplicationTypeSlack, 35 | ApplicationTypeTumblr, 36 | ApplicationTypeTwitter, 37 | ApplicationTypeVideos, 38 | ApplicationTypeVesper, 39 | ApplicationTypeVine, 40 | ApplicationTypeWhatsapp, 41 | ApplicationTypeWWDC, 42 | 43 | ApplicationCount // Used for count (27) 44 | }; 45 | 46 | @interface Application : NSObject 47 | @property (nonatomic, strong) NSString *displayName; 48 | @property (nonatomic, strong) NSString *developerName; 49 | @property (nonatomic, strong) NSString *identifier; 50 | @property (nonatomic, strong) NSString *iconName; 51 | @property (nonatomic) ApplicationType type; 52 | 53 | - (instancetype)initWithDictionary:(NSDictionary *)dict; 54 | 55 | + (NSArray *)applicationsFromJSONAtPath:(NSString *)path; 56 | + (NSArray *)applicationsFromJSON:(id)JSON; 57 | 58 | @end 59 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-29~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-40~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-50@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-50@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-50~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-50~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-72@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-72@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-72~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-72~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-76@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/AppIcon.appiconset/icon-76~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage-2.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "ipad", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "1x" 9 | }, 10 | { 11 | "orientation" : "landscape", 12 | "idiom" : "ipad", 13 | "extent" : "full-screen", 14 | "minimum-system-version" : "7.0", 15 | "scale" : "1x" 16 | }, 17 | { 18 | "orientation" : "portrait", 19 | "idiom" : "ipad", 20 | "extent" : "full-screen", 21 | "minimum-system-version" : "7.0", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "orientation" : "landscape", 26 | "idiom" : "ipad", 27 | "extent" : "full-screen", 28 | "minimum-system-version" : "7.0", 29 | "scale" : "2x" 30 | } 31 | ], 32 | "info" : { 33 | "version" : 1, 34 | "author" : "xcode" 35 | } 36 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage-3.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "ipad", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "1x" 9 | }, 10 | { 11 | "orientation" : "landscape", 12 | "idiom" : "ipad", 13 | "extent" : "full-screen", 14 | "minimum-system-version" : "7.0", 15 | "scale" : "1x" 16 | }, 17 | { 18 | "orientation" : "portrait", 19 | "idiom" : "ipad", 20 | "extent" : "full-screen", 21 | "minimum-system-version" : "7.0", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "orientation" : "landscape", 26 | "idiom" : "ipad", 27 | "extent" : "full-screen", 28 | "minimum-system-version" : "7.0", 29 | "scale" : "2x" 30 | } 31 | ], 32 | "info" : { 33 | "version" : 1, 34 | "author" : "xcode" 35 | } 36 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x-1.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default-hd@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default@2x-1.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button_background_foursquare_highlight.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "button_background_foursquare_highlight@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_highlight.imageset/button_background_foursquare_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_highlight.imageset/button_background_foursquare_highlight.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_highlight.imageset/button_background_foursquare_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_highlight.imageset/button_background_foursquare_highlight@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button_background_foursquare_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "button_background_foursquare_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_normal.imageset/button_background_foursquare_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_normal.imageset/button_background_foursquare_normal.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_normal.imageset/button_background_foursquare_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_foursquare_normal.imageset/button_background_foursquare_normal@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button_background_icloud_highlight.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "button_background_icloud_highlight@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_highlight.imageset/button_background_icloud_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_highlight.imageset/button_background_icloud_highlight.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_highlight.imageset/button_background_icloud_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_highlight.imageset/button_background_icloud_highlight@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button_background_icloud_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "button_background_icloud_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_normal.imageset/button_background_icloud_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_normal.imageset/button_background_icloud_normal.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_normal.imageset/button_background_icloud_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_icloud_normal.imageset/button_background_icloud_normal@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button_background_kickstarter_highlight.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "button_background_kickstarter_highlight@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_highlight.imageset/button_background_kickstarter_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_highlight.imageset/button_background_kickstarter_highlight.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_highlight.imageset/button_background_kickstarter_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_highlight.imageset/button_background_kickstarter_highlight@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button_background_kickstarter_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "button_background_kickstarter_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_normal.imageset/button_background_kickstarter_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_normal.imageset/button_background_kickstarter_normal.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_normal.imageset/button_background_kickstarter_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/button_background_kickstarter_normal.imageset/button_background_kickstarter_normal@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/header_pinterest.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "header_pinterest.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "header_pinterest@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/header_pinterest.imageset/header_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/header_pinterest.imageset/header_pinterest.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/header_pinterest.imageset/header_pinterest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/header_pinterest.imageset/header_pinterest@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/header_podcasts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "header_podcasts.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "header_podcasts@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/header_podcasts.imageset/header_podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/header_podcasts.imageset/header_podcasts.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/header_podcasts.imageset/header_podcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/header_podcasts.imageset/header_podcasts@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_500px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_500px.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_500px@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_500px.imageset/icon_500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_500px.imageset/icon_500px.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_500px.imageset/icon_500px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_500px.imageset/icon_500px@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_airbnb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_airbnb.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_airbnb@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_airbnb.imageset/icon_airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_airbnb.imageset/icon_airbnb.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_airbnb.imageset/icon_airbnb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_airbnb.imageset/icon_airbnb@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_appstore.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_appstore.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_appstore@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_appstore.imageset/icon_appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_appstore.imageset/icon_appstore.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_appstore.imageset/icon_appstore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_appstore.imageset/icon_appstore@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_camera.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_camera@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_camera.imageset/icon_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_camera.imageset/icon_camera.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_camera.imageset/icon_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_camera.imageset/icon_camera@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_dropbox.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_dropbox.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_dropbox@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_dropbox.imageset/icon_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_dropbox.imageset/icon_dropbox.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_dropbox.imageset/icon_dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_dropbox.imageset/icon_dropbox@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_facebook.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_facebook@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_facebook.imageset/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_facebook.imageset/icon_facebook.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_facebook.imageset/icon_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_facebook.imageset/icon_facebook@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_fancy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_fancy.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_fancy@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_fancy.imageset/icon_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_fancy.imageset/icon_fancy.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_fancy.imageset/icon_fancy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_fancy.imageset/icon_fancy@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_foursquare.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_foursquare.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_foursquare@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_foursquare.imageset/icon_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_foursquare.imageset/icon_foursquare.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_foursquare.imageset/icon_foursquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_foursquare.imageset/icon_foursquare@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_icloud.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_icloud.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_icloud@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_icloud.imageset/icon_icloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_icloud.imageset/icon_icloud.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_icloud.imageset/icon_icloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_icloud.imageset/icon_icloud@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_instagram.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_instagram.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_instagram@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_instagram.imageset/icon_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_instagram.imageset/icon_instagram.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_instagram.imageset/icon_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_instagram.imageset/icon_instagram@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_itunes_connect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_itunesconnect.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_itunesconnect@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_itunes_connect.imageset/icon_itunesconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_itunes_connect.imageset/icon_itunesconnect.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_itunes_connect.imageset/icon_itunesconnect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_itunes_connect.imageset/icon_itunesconnect@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_kickstarter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_kickstarter.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_kickstarter@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_kickstarter.imageset/icon_kickstarter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_kickstarter.imageset/icon_kickstarter.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_kickstarter.imageset/icon_kickstarter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_kickstarter.imageset/icon_kickstarter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_path.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_path.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_path@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_path.imageset/icon_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_path.imageset/icon_path.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_path.imageset/icon_path@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_path.imageset/icon_path@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_photos.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_photos.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_photos@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_photos.imageset/icon_photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_photos.imageset/icon_photos.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_photos.imageset/icon_photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_photos.imageset/icon_photos@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_pinterest.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pinterest.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pinterest@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_pinterest.imageset/icon_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_pinterest.imageset/icon_pinterest.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_pinterest.imageset/icon_pinterest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_pinterest.imageset/icon_pinterest@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_podcasts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_podcasts.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_podcasts@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_podcasts.imageset/icon_podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_podcasts.imageset/icon_podcasts.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_podcasts.imageset/icon_podcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_podcasts.imageset/icon_podcasts@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_remote.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_remote.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_remote@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_remote.imageset/icon_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_remote.imageset/icon_remote.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_remote.imageset/icon_remote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_remote.imageset/icon_remote@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_safari.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_safari.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_safari@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_safari.imageset/icon_safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_safari.imageset/icon_safari.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_safari.imageset/icon_safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_safari.imageset/icon_safari@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_skype.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_skype.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_skype@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_skype.imageset/icon_skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_skype.imageset/icon_skype.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_skype.imageset/icon_skype@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_skype.imageset/icon_skype@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_slack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_slack.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_slack@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_slack.imageset/icon_slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_slack.imageset/icon_slack.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_slack.imageset/icon_slack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_slack.imageset/icon_slack@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_tumblr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_tumblr.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_tumblr@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_tumblr.imageset/icon_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_tumblr.imageset/icon_tumblr.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_tumblr.imageset/icon_tumblr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_tumblr.imageset/icon_tumblr@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_twitter.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_twitter@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_twitter.imageset/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_twitter.imageset/icon_twitter.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_twitter.imageset/icon_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_twitter.imageset/icon_twitter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_vesper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_vesper.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_vesper@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_vesper.imageset/icon_vesper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_vesper.imageset/icon_vesper.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_vesper.imageset/icon_vesper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_vesper.imageset/icon_vesper@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_videos.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_videos.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_videos@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_videos.imageset/icon_videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_videos.imageset/icon_videos.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_videos.imageset/icon_videos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_videos.imageset/icon_videos@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_vine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_vine.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_vine@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_vine.imageset/icon_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_vine.imageset/icon_vine.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_vine.imageset/icon_vine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_vine.imageset/icon_vine@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_whatsapp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_whatsapp.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_whatsapp@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_whatsapp.imageset/icon_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_whatsapp.imageset/icon_whatsapp.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_whatsapp.imageset/icon_whatsapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_whatsapp.imageset/icon_whatsapp@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_wwdc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_wwdc.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_wwdc@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_wwdc.imageset/icon_wwdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_wwdc.imageset/icon_wwdc.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/icon_wwdc.imageset/icon_wwdc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/icon_wwdc.imageset/icon_wwdc@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/loading_imgBlue_78x78.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "loading_imgBlue_78x78@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "loading_imgBlue_78x78@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/loading_imgBlue_78x78.imageset/loading_imgBlue_78x78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/loading_imgBlue_78x78.imageset/loading_imgBlue_78x78@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/loading_imgBlue_78x78.imageset/loading_imgBlue_78x78@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/loading_imgBlue_78x78.imageset/loading_imgBlue_78x78@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_500px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_500px.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_500px@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_500px.imageset/logo_500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_500px.imageset/logo_500px.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_500px.imageset/logo_500px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_500px.imageset/logo_500px@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_airbnb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_airbnb.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_airbnb@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_airbnb.imageset/logo_airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_airbnb.imageset/logo_airbnb.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_airbnb.imageset/logo_airbnb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_airbnb.imageset/logo_airbnb@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_dropbox.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_dropbox.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_dropbox@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_dropbox.imageset/logo_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_dropbox.imageset/logo_dropbox.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_dropbox.imageset/logo_dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_dropbox.imageset/logo_dropbox@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_facebook.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_facebook@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_facebook.imageset/logo_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_facebook.imageset/logo_facebook.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_facebook.imageset/logo_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_facebook.imageset/logo_facebook@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_fancy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_fancy.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_fancy@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_fancy.imageset/logo_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_fancy.imageset/logo_fancy.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_fancy.imageset/logo_fancy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_fancy.imageset/logo_fancy@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_foursquare.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_foursquare.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_foursquare@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_foursquare.imageset/logo_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_foursquare.imageset/logo_foursquare.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_foursquare.imageset/logo_foursquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_foursquare.imageset/logo_foursquare@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_instagram.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_instagram.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_instagram@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_instagram.imageset/logo_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_instagram.imageset/logo_instagram.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_instagram.imageset/logo_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_instagram.imageset/logo_instagram@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_kickstarter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_kickstarter.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_kickstarter@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_kickstarter.imageset/logo_kickstarter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_kickstarter.imageset/logo_kickstarter.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_kickstarter.imageset/logo_kickstarter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_kickstarter.imageset/logo_kickstarter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_path.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_path.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_path@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_path.imageset/logo_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_path.imageset/logo_path.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_path.imageset/logo_path@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_path.imageset/logo_path@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_pinterest.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_pinterest.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_pinterest@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_pinterest.imageset/logo_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_pinterest.imageset/logo_pinterest.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_pinterest.imageset/logo_pinterest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_pinterest.imageset/logo_pinterest@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_skype.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_skype.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_skype@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_skype.imageset/logo_skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_skype.imageset/logo_skype.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_skype.imageset/logo_skype@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_skype.imageset/logo_skype@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_slack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_slack.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_slack@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_slack.imageset/logo_slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_slack.imageset/logo_slack.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_slack.imageset/logo_slack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_slack.imageset/logo_slack@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_tumblr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_tumblr.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_tumblr@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_tumblr.imageset/logo_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_tumblr.imageset/logo_tumblr.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_tumblr.imageset/logo_tumblr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_tumblr.imageset/logo_tumblr@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_twitter.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_twitter@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_twitter.imageset/logo_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_twitter.imageset/logo_twitter.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_twitter.imageset/logo_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_twitter.imageset/logo_twitter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_vesper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_vesper.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_vesper@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_vesper.imageset/logo_vesper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_vesper.imageset/logo_vesper.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_vesper.imageset/logo_vesper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_vesper.imageset/logo_vesper@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_vine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_vine.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo_vine@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_vine.imageset/logo_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_vine.imageset/logo_vine.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/logo_vine.imageset/logo_vine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/logo_vine.imageset/logo_vine@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_500px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_500px.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_500px@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_500px.imageset/placeholder_500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_500px.imageset/placeholder_500px.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_500px.imageset/placeholder_500px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_500px.imageset/placeholder_500px@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_airbnb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_airbnb.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_airbnb@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_airbnb.imageset/placeholder_airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_airbnb.imageset/placeholder_airbnb.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_airbnb.imageset/placeholder_airbnb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_airbnb.imageset/placeholder_airbnb@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_appstore.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_appstore.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_appstore@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_appstore.imageset/placeholder_appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_appstore.imageset/placeholder_appstore.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_appstore.imageset/placeholder_appstore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_appstore.imageset/placeholder_appstore@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_dropbox.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_dropbox.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_dropbox@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_dropbox.imageset/placeholder_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_dropbox.imageset/placeholder_dropbox.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_dropbox.imageset/placeholder_dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_dropbox.imageset/placeholder_dropbox@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_facebook.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_facebook@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_facebook.imageset/placeholder_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_facebook.imageset/placeholder_facebook.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_facebook.imageset/placeholder_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_facebook.imageset/placeholder_facebook@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_fancy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_fancy.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_fancy@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_fancy.imageset/placeholder_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_fancy.imageset/placeholder_fancy.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_fancy.imageset/placeholder_fancy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_fancy.imageset/placeholder_fancy@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_foursquare.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_foursquare.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_foursquare@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_foursquare.imageset/placeholder_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_foursquare.imageset/placeholder_foursquare.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_foursquare.imageset/placeholder_foursquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_foursquare.imageset/placeholder_foursquare@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_instagram.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_instagram.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_instagram@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_instagram.imageset/placeholder_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_instagram.imageset/placeholder_instagram.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_instagram.imageset/placeholder_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_instagram.imageset/placeholder_instagram@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_itunes_connect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_itunes_connect.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_itunes_connect@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_itunes_connect.imageset/placeholder_itunes_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_itunes_connect.imageset/placeholder_itunes_connect.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_itunes_connect.imageset/placeholder_itunes_connect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_itunes_connect.imageset/placeholder_itunes_connect@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_kickstarter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_kickstarter.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_kickstarter@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_kickstarter.imageset/placeholder_kickstarter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_kickstarter.imageset/placeholder_kickstarter.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_kickstarter.imageset/placeholder_kickstarter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_kickstarter.imageset/placeholder_kickstarter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_path.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_path.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_path@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_path.imageset/placeholder_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_path.imageset/placeholder_path.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_path.imageset/placeholder_path@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_path.imageset/placeholder_path@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_remote.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_remote.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_remote@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_remote.imageset/placeholder_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_remote.imageset/placeholder_remote.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_remote.imageset/placeholder_remote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_remote.imageset/placeholder_remote@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_skype.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_skype.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_skype@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_skype.imageset/placeholder_skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_skype.imageset/placeholder_skype.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_skype.imageset/placeholder_skype@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_skype.imageset/placeholder_skype@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_slack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_slack.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_slack@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_slack.imageset/placeholder_slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_slack.imageset/placeholder_slack.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_slack.imageset/placeholder_slack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_slack.imageset/placeholder_slack@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_tumblr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_tumblr.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_tumblr@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_tumblr.imageset/placeholder_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_tumblr.imageset/placeholder_tumblr.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_tumblr.imageset/placeholder_tumblr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_tumblr.imageset/placeholder_tumblr@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vesper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_vesper.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_vesper@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vesper.imageset/placeholder_vesper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vesper.imageset/placeholder_vesper.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vesper.imageset/placeholder_vesper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vesper.imageset/placeholder_vesper@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_videos.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_videos.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_videos@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_videos.imageset/placeholder_videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_videos.imageset/placeholder_videos.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_videos.imageset/placeholder_videos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_videos.imageset/placeholder_videos@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_vine.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_vine@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vine.imageset/placeholder_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vine.imageset/placeholder_vine.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vine.imageset/placeholder_vine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_vine.imageset/placeholder_vine@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_whatsapp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_whatsapp.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_whatsapp@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_whatsapp.imageset/placeholder_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_whatsapp.imageset/placeholder_whatsapp.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_whatsapp.imageset/placeholder_whatsapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Assets.xcassets/placeholder_whatsapp.imageset/placeholder_whatsapp@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/DetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DetailViewController.h 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/6/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "Application.h" 11 | 12 | @interface DetailViewController : UITableViewController 13 | 14 | @property (nonatomic, weak) NSArray *applications; 15 | @property (nonatomic) BOOL allowShuffling; 16 | 17 | - (instancetype)initWithApplication:(Application *)app; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Fonts/Ideal Sans/IdealSans-Book-Pro.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Fonts/Ideal Sans/IdealSans-Book-Pro.otf -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Applications/Fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/MainViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MainViewController.h 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/6/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "DetailViewController.h" 11 | #import "Application.h" 12 | 13 | @interface MainViewController : UITableViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Supporting Files/Applications-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Supporting Files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Supporting Files/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UIAppFonts 24 | 25 | IdealSans-Book-Pro.otf 26 | Lato-Regular.ttf 27 | 28 | UILaunchStoryboardName 29 | LaunchScreen 30 | UIMainStoryboardFile 31 | Storyboard 32 | UIRequiredDeviceCapabilities 33 | 34 | armv7 35 | 36 | UISupportedInterfaceOrientations 37 | 38 | UIInterfaceOrientationPortrait 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Supporting Files/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/Supporting Files/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Applications 4 | // 5 | // Created by Ignacio Romero on 2/28/17. 6 | // Copyright © 2017 DZN. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/UIColor+Hexadecimal.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+Hexadecimal.h 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/7/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor (Hexadecimal) 12 | 13 | + (UIColor *)colorWithHex:(NSString *)string; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Applications/UIColor+Hexadecimal.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+Hexadecimal.m 3 | // Applications 4 | // 5 | // Created by Ignacio on 6/7/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import "UIColor+Hexadecimal.h" 10 | 11 | @implementation UIColor (Hexadecimal) 12 | 13 | + (UIColor *)colorWithHex:(NSString *)string 14 | { 15 | NSString *cleanString = [string stringByReplacingOccurrencesOfString:@"#" withString:@""]; 16 | if([cleanString length] == 3) { 17 | cleanString = [NSString stringWithFormat:@"%@%@%@%@%@%@", 18 | [cleanString substringWithRange:NSMakeRange(0, 1)],[cleanString substringWithRange:NSMakeRange(0, 1)], 19 | [cleanString substringWithRange:NSMakeRange(1, 1)],[cleanString substringWithRange:NSMakeRange(1, 1)], 20 | [cleanString substringWithRange:NSMakeRange(2, 1)],[cleanString substringWithRange:NSMakeRange(2, 1)]]; 21 | } 22 | if([cleanString length] == 6) { 23 | cleanString = [cleanString stringByAppendingString:@"ff"]; 24 | } 25 | 26 | unsigned int baseValue; 27 | [[NSScanner scannerWithString:cleanString] scanHexInt:&baseValue]; 28 | 29 | float red = ((baseValue >> 24) & 0xFF)/255.0f; 30 | float green = ((baseValue >> 16) & 0xFF)/255.0f; 31 | float blue = ((baseValue >> 8) & 0xFF)/255.0f; 32 | 33 | return [UIColor colorWithRed:red green:green blue:blue alpha:1.0]; 34 | } 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 6/19/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 6/19/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @implementation AppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | self.window.backgroundColor = [UIColor whiteColor]; 16 | 17 | return YES; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-120~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-120~car.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-29~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-40~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-50@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-50@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-50~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-50~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-72@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-72@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-72~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-72~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-76@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/AppIcon.appiconset/icon-76~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default-hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default-hd@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/CollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CollectionViewController.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 6/19/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CollectionViewController : UICollectionViewController 12 | 13 | - (IBAction)refreshColors:(id)sender; 14 | - (IBAction)removeColors:(id)sender; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/Colors-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIcons 12 | 13 | CFBundleIcons~ipad 14 | 15 | CFBundleIdentifier 16 | $(PRODUCT_BUNDLE_IDENTIFIER) 17 | CFBundleInfoDictionaryVersion 18 | 6.0 19 | CFBundleName 20 | ${PRODUCT_NAME} 21 | CFBundlePackageType 22 | APPL 23 | CFBundleShortVersionString 24 | 1.0 25 | CFBundleSignature 26 | ???? 27 | CFBundleVersion 28 | 1.0 29 | LSRequiresIPhoneOS 30 | 31 | UIMainStoryboardFile 32 | Storyboard 33 | UIRequiredDeviceCapabilities 34 | 35 | armv7 36 | 37 | UISupportedInterfaceOrientations 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/Colors-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_3_0 10 | #warning "This project uses features only available in iOS SDK 3.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-120~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-120~car.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-29~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-40~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-50@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-50@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-50~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-50~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-72@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-72@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-72~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-72~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-76@2x~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/AppIcon.appiconset/icon-76~ipad.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default-hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default-hd@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Colors/System.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Colors/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 6/19/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/DataSource/Color.h: -------------------------------------------------------------------------------- 1 | // 2 | // Palette.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 7/4/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface Color : NSObject 12 | 13 | @property (nonatomic, strong) NSString *hex; 14 | @property (nonatomic, strong) NSString *name; 15 | @property (nonatomic, strong) NSString *rgb; 16 | 17 | @property (nonatomic, weak) UIColor *color; 18 | 19 | - (instancetype)initWithDictionary:(NSDictionary *)dict; 20 | 21 | + (UIImage *)roundThumbWithColor:(UIColor *)color; 22 | + (UIImage *)roundImageForSize:(CGSize)size withColor:(UIColor *)color; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/DataSource/Color.m: -------------------------------------------------------------------------------- 1 | // 2 | // Palette.m 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 7/4/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import "Color.h" 10 | #import "UIColor+Hex.h" 11 | 12 | @implementation Color 13 | 14 | - (instancetype)initWithDictionary:(NSDictionary *)dict 15 | { 16 | if (!dict) { 17 | return nil; 18 | } 19 | 20 | self = [super init]; 21 | if (self) { 22 | self.hex = [dict objectForKey:@"hex"]; 23 | self.name = [dict objectForKey:@"name"]; 24 | self.rgb = [dict objectForKey:@"rgb"]; 25 | } 26 | return self; 27 | } 28 | 29 | - (UIColor *)color 30 | { 31 | return [UIColor colorFromHex:self.hex]; 32 | } 33 | 34 | + (UIImage *)roundThumbWithColor:(UIColor *)color 35 | { 36 | return [self roundImageForSize:CGSizeMake(32.0, 32.0) withColor:color]; 37 | } 38 | 39 | + (UIImage *)roundImageForSize:(CGSize)size withColor:(UIColor *)color 40 | { 41 | if (!color) { 42 | return nil; 43 | } 44 | 45 | // Constants 46 | CGRect bounds = CGRectMake(0, 0, size.width, size.height); 47 | 48 | // Create the image context 49 | UIGraphicsBeginImageContextWithOptions(bounds.size, NO, 0); 50 | 51 | //// Oval Drawing 52 | UIBezierPath *ovalPath = [UIBezierPath bezierPathWithOvalInRect:bounds]; 53 | [color setFill]; 54 | [ovalPath fill]; 55 | 56 | //Create the image using the current context. 57 | UIImage *_image = UIGraphicsGetImageFromCurrentImageContext(); 58 | UIGraphicsEndImageContext(); 59 | 60 | return _image; 61 | } 62 | 63 | @end 64 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/DataSource/Palette.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColorPalette.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 7/1/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class Color; 12 | 13 | @interface Palette : NSObject 14 | 15 | @property (nonatomic, readonly) NSMutableArray *colors; 16 | 17 | + (instancetype)sharedPalette; 18 | 19 | - (void)reloadAll; 20 | - (void)removeColor:(Color *)color; 21 | - (void)removeAll; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/DataSource/Palette.m: -------------------------------------------------------------------------------- 1 | // 2 | // ColorSource.m 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 7/1/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import "Palette.h" 10 | #import "Color.h" 11 | 12 | @interface Palette () 13 | @end 14 | 15 | static Palette *_sharedPalette = nil; 16 | 17 | @implementation Palette 18 | @synthesize colors = _colors; 19 | 20 | + (instancetype)sharedPalette 21 | { 22 | static dispatch_once_t onceToken; 23 | dispatch_once(&onceToken, ^{ 24 | _sharedPalette = [[Palette alloc] init]; 25 | [_sharedPalette loadColors]; 26 | }); 27 | return _sharedPalette; 28 | } 29 | 30 | - (void)loadColors 31 | { 32 | // A list of crayola colors in JSON by Jjdelc https://gist.github.com/jjdelc/1868136 33 | NSString *path = [[NSBundle mainBundle] pathForResource:@"colors" ofType:@"json"]; 34 | NSData *data = [NSData dataWithContentsOfFile:path]; 35 | NSArray *objects = [[NSJSONSerialization JSONObjectWithData:data options:kNilOptions|NSJSONWritingPrettyPrinted error:nil] mutableCopy]; 36 | 37 | _colors = [[NSMutableArray alloc] initWithCapacity:objects.count]; 38 | 39 | for (NSDictionary *dictionary in objects) { 40 | Color *color = [[Color alloc] initWithDictionary:dictionary]; 41 | [_colors addObject:color]; 42 | } 43 | } 44 | 45 | - (void)reloadAll 46 | { 47 | [self removeAll]; 48 | [self loadColors]; 49 | } 50 | 51 | - (void)removeColor:(Color *)color 52 | { 53 | NSInteger idx = [_colors indexOfObject:color]; 54 | 55 | if (idx >= 0 && idx < _colors.count) { 56 | [_colors removeObjectAtIndex:idx]; 57 | } 58 | } 59 | 60 | - (void)removeAll 61 | { 62 | [_colors removeAllObjects]; 63 | _colors = nil; 64 | } 65 | 66 | @end 67 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/DataSource/UIColor+Hex.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+Hex.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero on 4/26/16. 6 | // Copyright © 2016 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor (Hex) 12 | 13 | + (UIColor *)colorFromHex:(NSString *)hex; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/DataSource/UIColor+Hex.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+Hex.m 3 | // Colors 4 | // 5 | // Created by Ignacio Romero on 4/26/16. 6 | // Copyright © 2016 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import "UIColor+Hex.h" 10 | 11 | @implementation UIColor (Hex) 12 | 13 | + (UIColor *)colorFromHex:(NSString *)hex 14 | { 15 | return [self colorFromHex:hex alpha:1.0]; 16 | } 17 | 18 | + (UIColor *)colorFromHex:(NSString *)hex alpha:(CGFloat)alpha 19 | { 20 | NSUInteger offset = 0; 21 | 22 | if ([hex hasPrefix:@"#"]) { 23 | offset = 1; 24 | } 25 | 26 | NSString *string = [hex substringFromIndex:offset]; 27 | 28 | if (string.length == 3) { 29 | string = [NSString stringWithFormat:@"%@%@%@%@%@%@", 30 | [string substringWithRange:NSMakeRange(0, 1)], 31 | [string substringWithRange:NSMakeRange(0, 1)], 32 | [string substringWithRange:NSMakeRange(1, 1)], 33 | [string substringWithRange:NSMakeRange(1, 1)], 34 | [string substringWithRange:NSMakeRange(2, 1)], 35 | [string substringWithRange:NSMakeRange(2, 1)]]; 36 | } 37 | 38 | if (string.length == 6) { 39 | string = [string stringByAppendingString:@"ff"]; 40 | } 41 | 42 | if (string == nil) { 43 | return nil; 44 | } 45 | 46 | unsigned int baseValue; 47 | [[NSScanner scannerWithString:string] scanHexInt:&baseValue]; 48 | 49 | float red = ((baseValue >> 24) & 0xFF)/255.0f; 50 | float green = ((baseValue >> 16) & 0xFF)/255.0f; 51 | float blue = ((baseValue >> 8) & 0xFF)/255.0f; 52 | 53 | return [UIColor colorWithRed:red green:green blue:blue alpha:alpha]; 54 | } 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/empty_placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "empty_placeholder.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "empty_placeholder@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/empty_placeholder.imageset/empty_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/empty_placeholder.imageset/empty_placeholder.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/empty_placeholder.imageset/empty_placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/empty_placeholder.imageset/empty_placeholder@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "search_icon.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "search_icon@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/search_icon.imageset/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/search_icon.imageset/search_icon.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/search_icon.imageset/search_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/search_icon.imageset/search_icon@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_collection.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "tab_collection.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "tab_collection@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_collection.imageset/tab_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/tab_collection.imageset/tab_collection.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_collection.imageset/tab_collection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/tab_collection.imageset/tab_collection@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "tab_search.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "tab_search@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_search.imageset/tab_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/tab_search.imageset/tab_search.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_search.imageset/tab_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/tab_search.imageset/tab_search@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_table.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "tab_table.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "tab_table@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_table.imageset/tab_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/tab_table.imageset/tab_table.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Images.xcassets/tab_table.imageset/tab_table@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/Colors/Images.xcassets/tab_table.imageset/tab_table@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Storyboard 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/SearchViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SearchViewController.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 7/4/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class Color; 12 | 13 | @interface SearchViewController : UIViewController 14 | 15 | @property (nonatomic, strong) Color *selectedColor; 16 | 17 | @property (nonatomic, weak) IBOutlet UIImageView *colorView; 18 | @property (nonatomic, weak) IBOutlet UILabel *nameLabel; 19 | @property (nonatomic, weak) IBOutlet UILabel *hexLabel; 20 | @property (nonatomic, weak) IBOutlet UILabel *rgbLabel; 21 | @property (nonatomic, weak) IBOutlet UILabel *hexLegend; 22 | @property (nonatomic, weak) IBOutlet UILabel *rgbLegend; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/TableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TableViewController.h 3 | // Colors 4 | // 5 | // Created by Ignacio Romero Z. on 6/29/14. 6 | // Copyright (c) 2014 DZN Labs. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TableViewController : UITableViewController 12 | 13 | - (IBAction)refreshColors:(id)sender; 14 | - (IBAction)removeColors:(id)sender; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Colors/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Colors 4 | // 5 | // Created by Ignacio Romero on 3/8/17. 6 | // Copyright © 2017 DZN. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 13 | 15 | 16 | 18 | 19 | 21 | 22 | 24 | 25 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSet/DZNEmptyDataSet.h: -------------------------------------------------------------------------------- 1 | // 2 | // DZNEmptyDataSet.h 3 | // DZNEmptyDataSet 4 | // 5 | // Created by Ignacio Romero on 2/28/17. 6 | // Copyright © 2017 DZN. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for DZNEmptyDataSet. 12 | FOUNDATION_EXPORT double DZNEmptyDataSetVersionNumber; 13 | 14 | //! Project version string for DZNEmptyDataSet. 15 | FOUNDATION_EXPORT const unsigned char DZNEmptyDataSetVersionString[]; 16 | 17 | #import 18 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSet/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | XCodeProjectPath 22 | $(SOURCE_ROOT) 23 | 24 | 25 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_500px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_500px@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Airbnb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Airbnb@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_AppStore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_AppStore@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Camera@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Dropbox@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Facebook@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Fancy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Fancy@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Foursquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Foursquare@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Instagram@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Kickstarter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Kickstarter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Path@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Path@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Photos@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Pinterest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Pinterest@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Podcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Podcasts@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Remote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Remote@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Safari@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Skype@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Skype@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Slack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Slack@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Tumblr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Tumblr@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Twitter@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Vesper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Vesper@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Videos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Videos@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Vine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_Vine@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_WWDC@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_WWDC@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_WhatsApp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_WhatsApp@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_iCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_iCloud@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_iTunes_Connect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNEmptyDataSet/9bffa69a83a9fa58a14b3cf43cb6dd8a63774179/DZNEmptyDataSet/DZNEmptyDataSetTests/ReferenceImages_64/ApplicationsSnapshotTests/testApplicationEmptyDataSets_iTunes_Connect@2x.png -------------------------------------------------------------------------------- /DZNEmptyDataSet/EmptyDataSetTests/DZNEmptyDataSetTests-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | //#import "Applications.h" 6 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '10.0' 2 | 3 | use_frameworks! 4 | inhibit_all_warnings! 5 | 6 | workspace 'DZNEmptyDataSet.xcworkspace' 7 | 8 | target 'DZNEmptyDataSetTests' do 9 | pod 'iOSSnapshotTestCase' 10 | end 11 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - iOSSnapshotTestCase (6.2.0): 3 | - iOSSnapshotTestCase/SwiftSupport (= 6.2.0) 4 | - iOSSnapshotTestCase/Core (6.2.0) 5 | - iOSSnapshotTestCase/SwiftSupport (6.2.0): 6 | - iOSSnapshotTestCase/Core 7 | 8 | DEPENDENCIES: 9 | - iOSSnapshotTestCase 10 | 11 | SPEC REPOS: 12 | trunk: 13 | - iOSSnapshotTestCase 14 | 15 | SPEC CHECKSUMS: 16 | iOSSnapshotTestCase: 9ab44cb5aa62b84d31847f40680112e15ec579a6 17 | 18 | PODFILE CHECKSUM: e0473814f267076f6b72e4045e276a3be55d403b 19 | 20 | COCOAPODS: 1.8.4 21 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - iOSSnapshotTestCase (6.2.0): 3 | - iOSSnapshotTestCase/SwiftSupport (= 6.2.0) 4 | - iOSSnapshotTestCase/Core (6.2.0) 5 | - iOSSnapshotTestCase/SwiftSupport (6.2.0): 6 | - iOSSnapshotTestCase/Core 7 | 8 | DEPENDENCIES: 9 | - iOSSnapshotTestCase 10 | 11 | SPEC REPOS: 12 | trunk: 13 | - iOSSnapshotTestCase 14 | 15 | SPEC CHECKSUMS: 16 | iOSSnapshotTestCase: 9ab44cb5aa62b84d31847f40680112e15ec579a6 17 | 18 | PODFILE CHECKSUM: e0473814f267076f6b72e4045e276a3be55d403b 19 | 20 | COCOAPODS: 1.8.4 21 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## iOSSnapshotTestCase 5 | 6 | MIT License 7 | 8 | Copyright (c) 2017-2018, Uber Technologies, Inc. 9 | Copyright (c) 2013-2018, Facebook, Inc. 10 | 11 | Permission is hereby granted, free of charge, to any person obtaining a copy 12 | of this software and associated documentation files (the "Software"), to deal 13 | in the Software without restriction, including without limitation the rights 14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 15 | copies of the Software, and to permit persons to whom the Software is 16 | furnished to do so, subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all 19 | copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 27 | SOFTWARE. 28 | 29 | Generated by CocoaPods - https://cocoapods.org 30 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_DZNEmptyDataSetTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_DZNEmptyDataSetTests 5 | @end 6 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_DZNEmptyDataSetTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_DZNEmptyDataSetTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iframework "$(PLATFORM_DIR)/Developer/Library/Frameworks" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 7 | OTHER_LDFLAGS = $(inherited) -framework "FBSnapshotTestCase" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -framework "XCTest" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_DZNEmptyDataSetTests { 2 | umbrella header "Pods-DZNEmptyDataSetTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-DZNEmptyDataSetTests/Pods-DZNEmptyDataSetTests.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iframework "$(PLATFORM_DIR)/Developer/Library/Frameworks" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 7 | OTHER_LDFLAGS = $(inherited) -framework "FBSnapshotTestCase" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -framework "XCTest" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## iOSSnapshotTestCase 5 | 6 | MIT License 7 | 8 | Copyright (c) 2017-2018, Uber Technologies, Inc. 9 | Copyright (c) 2013-2018, Facebook, Inc. 10 | 11 | Permission is hereby granted, free of charge, to any person obtaining a copy 12 | of this software and associated documentation files (the "Software"), to deal 13 | in the Software without restriction, including without limitation the rights 14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 15 | copies of the Software, and to permit persons to whom the Software is 16 | furnished to do so, subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all 19 | copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 27 | SOFTWARE. 28 | 29 | Generated by CocoaPods - https://cocoapods.org 30 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | MIT License 18 | 19 | Copyright (c) 2017-2018, Uber Technologies, Inc. 20 | Copyright (c) 2013-2018, Facebook, Inc. 21 | 22 | Permission is hereby granted, free of charge, to any person obtaining a copy 23 | of this software and associated documentation files (the "Software"), to deal 24 | in the Software without restriction, including without limitation the rights 25 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 26 | copies of the Software, and to permit persons to whom the Software is 27 | furnished to do so, subject to the following conditions: 28 | 29 | The above copyright notice and this permission notice shall be included in all 30 | copies or substantial portions of the Software. 31 | 32 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 33 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 34 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 35 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 36 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 37 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 38 | SOFTWARE. 39 | 40 | License 41 | MIT 42 | Title 43 | iOSSnapshotTestCase 44 | Type 45 | PSGroupSpecifier 46 | 47 | 48 | FooterText 49 | Generated by CocoaPods - https://cocoapods.org 50 | Title 51 | 52 | Type 53 | PSGroupSpecifier 54 | 55 | 56 | StringsTable 57 | Acknowledgements 58 | Title 59 | Acknowledgements 60 | 61 | 62 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_EmptyDataSetTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_EmptyDataSetTests 5 | @end 6 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_EmptyDataSetTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_EmptyDataSetTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iframework "$(PLATFORM_DIR)/Developer/Library/Frameworks" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 7 | OTHER_LDFLAGS = $(inherited) -framework "FBSnapshotTestCase" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -framework "XCTest" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_EmptyDataSetTests { 2 | umbrella header "Pods-EmptyDataSetTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/Pods-EmptyDataSetTests/Pods-EmptyDataSetTests.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iframework "$(PLATFORM_DIR)/Developer/Library/Frameworks" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase" 7 | OTHER_LDFLAGS = $(inherited) -framework "FBSnapshotTestCase" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -framework "XCTest" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 6.2.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/iOSSnapshotTestCase-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 6.2.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/iOSSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_iOSSnapshotTestCase : NSObject 3 | @end 4 | @implementation PodsDummy_iOSSnapshotTestCase 5 | @end 6 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/iOSSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/iOSSnapshotTestCase-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FBSnapshotTestCase.h" 14 | #import "FBSnapshotTestCasePlatform.h" 15 | #import "FBSnapshotTestController.h" 16 | 17 | FOUNDATION_EXPORT double FBSnapshotTestCaseVersionNumber; 18 | FOUNDATION_EXPORT const unsigned char FBSnapshotTestCaseVersionString[]; 19 | 20 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/iOSSnapshotTestCase.modulemap: -------------------------------------------------------------------------------- 1 | framework module FBSnapshotTestCase { 2 | umbrella header "iOSSnapshotTestCase-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/Target Support Files/iOSSnapshotTestCase/iOSSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/iOSSnapshotTestCase 2 | ENABLE_BITCODE = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_LDFLAGS = $(inherited) -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -framework "XCTest" 6 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/iOSSnapshotTestCase 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/iOSSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Gabriel Handford on 3/1/09. 3 | // Copyright 2009-2013. All rights reserved. 4 | // Created by John Boiles on 10/20/11. 5 | // Copyright (c) 2011. All rights reserved 6 | // Modified by Felix Schulze on 2/11/13. 7 | // Copyright 2013. All rights reserved. 8 | // 9 | // Permission is hereby granted, free of charge, to any person 10 | // obtaining a copy of this software and associated documentation 11 | // files (the "Software"), to deal in the Software without 12 | // restriction, including without limitation the rights to use, 13 | // copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | // copies of the Software, and to permit persons to whom the 15 | // Software is furnished to do so, subject to the following 16 | // conditions: 17 | // 18 | // The above copyright notice and this permission notice shall be 19 | // included in all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 22 | // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 23 | // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 24 | // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 25 | // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 26 | // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 27 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 28 | // OTHER DEALINGS IN THE SOFTWARE. 29 | // 30 | 31 | #import 32 | 33 | NS_ASSUME_NONNULL_BEGIN 34 | 35 | @interface UIImage (Compare) 36 | 37 | /** 38 | Compares the image against another given image. 39 | 40 | @param image The other image to compare against. 41 | @param perPixelTolerance How much (in percentage) any given pixel's colors are allowed to change from the pixel in the reference image. 42 | @param overallTolerance The overall percentage of pixels that are allowed to change from the pixels in the reference image. 43 | @return A BOOL which represents if the image is the same or not. 44 | */ 45 | - (BOOL)fb_compareWithImage:(UIImage *)image perPixelTolerance:(CGFloat)perPixelTolerance overallTolerance:(CGFloat)overallTolerance; 46 | 47 | @end 48 | 49 | NS_ASSUME_NONNULL_END 50 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/iOSSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Gabriel Handford on 3/1/09. 3 | // Copyright 2009-2013. All rights reserved. 4 | // Created by John Boiles on 10/20/11. 5 | // Copyright (c) 2011. All rights reserved 6 | // Modified by Felix Schulze on 2/11/13. 7 | // Copyright 2013. All rights reserved. 8 | // 9 | // Permission is hereby granted, free of charge, to any person 10 | // obtaining a copy of this software and associated documentation 11 | // files (the "Software"), to deal in the Software without 12 | // restriction, including without limitation the rights to use, 13 | // copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | // copies of the Software, and to permit persons to whom the 15 | // Software is furnished to do so, subject to the following 16 | // conditions: 17 | // 18 | // The above copyright notice and this permission notice shall be 19 | // included in all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 22 | // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 23 | // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 24 | // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 25 | // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 26 | // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 27 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 28 | // OTHER DEALINGS IN THE SOFTWARE. 29 | // 30 | 31 | #import 32 | 33 | NS_ASSUME_NONNULL_BEGIN 34 | 35 | @interface UIImage (Diff) 36 | 37 | - (UIImage *)fb_diffWithImage:(UIImage *)image; 38 | 39 | @end 40 | 41 | NS_ASSUME_NONNULL_END 42 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/iOSSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017-2018, Uber Technologies, Inc. 3 | * Copyright (c) 2015-2018, Facebook, Inc. 4 | * 5 | * This source code is licensed under the MIT license found in the 6 | * LICENSE file in the root directory of this source tree. 7 | * 8 | */ 9 | 10 | #import 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface UIImage (Snapshot) 15 | 16 | /// Uses renderInContext: to get a snapshot of the layer. 17 | + (nullable UIImage *)fb_imageForLayer:(CALayer *)layer; 18 | 19 | /// Uses renderInContext: to get a snapshot of the view layer. 20 | + (nullable UIImage *)fb_imageForViewLayer:(UIView *)view; 21 | 22 | /// Uses drawViewHierarchyInRect: to get a snapshot of the view and adds the view into a window if needed. 23 | + (nullable UIImage *)fb_imageForView:(UIView *)view; 24 | 25 | @end 26 | 27 | NS_ASSUME_NONNULL_END 28 | -------------------------------------------------------------------------------- /DZNEmptyDataSet/Pods/iOSSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-2018, Uber Technologies, Inc. 4 | Copyright (c) 2013-2018, Facebook, Inc. 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | # The Dangerfile contains a collection of home-grown rules specific to your project. 2 | # http://danger.systems/ 3 | 4 | # Warn about incomplete PR title. 5 | warn("Please add a more descriptive title.") if github.pr_title.length < 10 6 | 7 | # Warn about incomplete PR description. 8 | warn("Please add a detailed summary in the description.") if github.pr_body.length < 10 9 | 10 | # Warn about large PR! 11 | warn("This PR is too big! Consider breaking it down into smaller PRs.") if git.lines_of_code > 2000 12 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | 2 | source "https://rubygems.org" 3 | 4 | gem 'xcpretty' 5 | gem 'cocoapods' 6 | 7 | gem 'danger', '~> 4.0' -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.0 2 | // The swift-tools-version declares the minimum version of Swift required to build this package. 3 | 4 | import PackageDescription 5 | 6 | let package = Package( 7 | name: "DZNEmptyDataSet", 8 | platforms: [ 9 | .iOS(.v9), 10 | .tvOS(.v9) 11 | ], 12 | products: [ 13 | // Products define the executables and libraries produced by a package, and make them visible to other packages. 14 | .library( 15 | name: "DZNEmptyDataSet", 16 | targets: ["DZNEmptyDataSet"]) 17 | ], 18 | dependencies: [ 19 | // Dependencies declare other packages that this package depends on. 20 | // .package(url: /* package url */, from: "1.0.0"), 21 | ], 22 | targets: [ 23 | // Targets are the basic building blocks of a package. A target can define a module or a test suite. 24 | // Targets can depend on other targets in this package, and on products in packages which this package depends on. 25 | .target( 26 | name: "DZNEmptyDataSet", 27 | dependencies: [], 28 | path: ".", 29 | sources: ["Source"], 30 | publicHeadersPath: "Source" 31 | ) 32 | ] 33 | ) 34 | --------------------------------------------------------------------------------