├── .gitignore ├── LICENSE ├── README.md ├── RSS ├── Graphics Resources │ ├── AppIcon.sketch │ │ ├── Data │ │ ├── metadata │ │ └── version │ └── LaunchImage.sketch │ │ ├── Data │ │ ├── metadata │ │ └── version ├── RSS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── matt.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── matt.xcuserdatad │ │ └── xcschemes │ │ ├── RSS.xcscheme │ │ └── xcschememanagement.plist ├── RSS │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-App~iPad.png │ │ │ ├── AppIcon-App~iPad@2x.png │ │ │ ├── AppIcon-App~iPhone@2x.png │ │ │ ├── AppIcon-Settings~iPad.png │ │ │ ├── AppIcon-Settings~iPad@2x.png │ │ │ ├── AppIcon-Settings~iPhone@2x.png │ │ │ ├── AppIcon-Spotlight~iPad.png │ │ │ ├── AppIcon-Spotlight~iPad@2x.png │ │ │ ├── AppIcon-Spotlight~iPhone@2x.png │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── LaunchImage-Landscape~iPad.png │ │ │ ├── LaunchImage-Landscape~iPad@2x.png │ │ │ ├── LaunchImage-Portrait-R4~iPhone@2x.png │ │ │ ├── LaunchImage-Portrait~iPad.png │ │ │ ├── LaunchImage-Portrait~iPad@2x.png │ │ │ └── LaunchImage-Portrait~iPhone@2x.png │ ├── RSS-Info.plist │ ├── RSS-Prefix.pch │ ├── RSSAppDelegate.h │ ├── RSSAppDelegate.m │ ├── RSSViewController.h │ ├── RSSViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── RSSTests │ ├── RSSTests-Info.plist │ ├── RSSTests.m │ └── en.lproj │ └── InfoPlist.strings └── Screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | # CocoaPods 2 | # 3 | # We recommend against adding the Pods directory to your .gitignore. However 4 | # you should judge for yourself, the pros and cons are mentioned at: 5 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control? 6 | # 7 | # Pods/ 8 | 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Matt Zanchelli 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Automatically Exporting Assets from Sketch into Xcode. 2 | 3 | ![Header](Screenshot.png) 4 | 5 | Today, [Bohemian Coding](http://bohemiancoding.com/) released [SketchTool](http://bohemiancoding.com/sketch/tool/). It’s “a command-line app for exporting pages and slices out of .sketch docs.” 6 | 7 | Many people use Sketch in their Mac and iOS development workflow. Previously, the process involved making changes in Sketch, exporting them, moving them into Xcode [Asset Catalogs](https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/Recipe.html), then running. However, with SketchTool, this can all be done automatically. 8 | 9 | ### Screencast 10 | [Watch the screencast](https://vimeo.com/93527998). 11 | 12 | [Download](https://github.com/mdznr/Sketch-Xcode/archive/master.zip) the files used in the screencast. 13 | 14 | ### Installing Sketchtool 15 | You can [download](http://bohemiancoding.com/sketch/tool/) the latest version of Sketchtool from Bohemian Coding’s website. To install it, run "install.sh". 16 | 17 | Alternatively, use the following lines of code pasted into Terminal to do effectively the same thing: 18 | 19 | ``` 20 | curl http://static-download.s3-website-us-east-1.amazonaws.com/sketchtool/sketchtool-latest.zip > sketchtool-latest.zip;\ 21 | unzip sketchtool-latest.zip;\ 22 | cd sketchtool/;\ 23 | ./install.sh;\ 24 | cd ../;\ 25 | rm -r sketchtool/;\ 26 | rm sketchtool-latest.zip; 27 | ``` 28 | 29 | ### Setting up your Sketch files 30 | Many people have their project organized differently, but I prefer to have all Sketch documents in a folder at the root of the project’s directory. I usually name it “Graphics Resources”. This is what I’ll be using in the screencast. 31 | 32 | Then, use artboards and slices for the assets you want to export. For example, in my app icon Sketch document (AppIcon.sketch), I have an artboard made for each size of the icon. It’s a modified version of the iOS app icon template bundled with Sketch 3. 33 | 34 | ### Build scripts 35 | In Xcode, you can add a new run script build phase. Make sure this new build phase occurs before “Copy Bundle Resources”, which copies in Image.xcassets. 36 | 37 | The contents of the script should be like: 38 | ``` 39 | sketchtool export artboards "$PROJECT_DIR"/"Graphics Resources/AppIcon.sketch" --output="$PROJECT_DIR"/"$PROJECT_NAME"/Images.xcassets/AppIcon.appiconset --formats="png" 40 | ``` 41 | 42 | This should be modified and extended for your uses, and I may try to work out a way where this can be done more easily. 43 | -------------------------------------------------------------------------------- /RSS/Graphics Resources/AppIcon.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/Graphics Resources/AppIcon.sketch/Data -------------------------------------------------------------------------------- /RSS/Graphics Resources/AppIcon.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7573 9 | commit 10 | 4e465a63318006126bf98e1e51096c1ad230008e 11 | fonts 12 | 13 | length 14 | 379013 15 | version 16 | 36 17 | 18 | 19 | -------------------------------------------------------------------------------- /RSS/Graphics Resources/AppIcon.sketch/version: -------------------------------------------------------------------------------- 1 | 36 -------------------------------------------------------------------------------- /RSS/Graphics Resources/LaunchImage.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/Graphics Resources/LaunchImage.sketch/Data -------------------------------------------------------------------------------- /RSS/Graphics Resources/LaunchImage.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7597 9 | commit 10 | 463d76bf23dc890960e184011f80b3dacac572b9 11 | fonts 12 | 13 | length 14 | 119879 15 | version 16 | 36 17 | 18 | 19 | -------------------------------------------------------------------------------- /RSS/Graphics Resources/LaunchImage.sketch/version: -------------------------------------------------------------------------------- 1 | 36 -------------------------------------------------------------------------------- /RSS/RSS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | C9F46C691912DA97007EE701 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9F46C681912DA97007EE701 /* Foundation.framework */; }; 11 | C9F46C6B1912DA97007EE701 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9F46C6A1912DA97007EE701 /* CoreGraphics.framework */; }; 12 | C9F46C6D1912DA97007EE701 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9F46C6C1912DA97007EE701 /* UIKit.framework */; }; 13 | C9F46C731912DA97007EE701 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C9F46C711912DA97007EE701 /* InfoPlist.strings */; }; 14 | C9F46C751912DA97007EE701 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F46C741912DA97007EE701 /* main.m */; }; 15 | C9F46C791912DA97007EE701 /* RSSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F46C781912DA97007EE701 /* RSSAppDelegate.m */; }; 16 | C9F46C7C1912DA97007EE701 /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C9F46C7A1912DA97007EE701 /* Main_iPhone.storyboard */; }; 17 | C9F46C7F1912DA97007EE701 /* Main_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C9F46C7D1912DA97007EE701 /* Main_iPad.storyboard */; }; 18 | C9F46C821912DA97007EE701 /* RSSViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F46C811912DA97007EE701 /* RSSViewController.m */; }; 19 | C9F46C841912DA97007EE701 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C9F46C831912DA97007EE701 /* Images.xcassets */; }; 20 | C9F46C8B1912DA97007EE701 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9F46C8A1912DA97007EE701 /* XCTest.framework */; }; 21 | C9F46C8C1912DA97007EE701 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9F46C681912DA97007EE701 /* Foundation.framework */; }; 22 | C9F46C8D1912DA97007EE701 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9F46C6C1912DA97007EE701 /* UIKit.framework */; }; 23 | C9F46C951912DA97007EE701 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C9F46C931912DA97007EE701 /* InfoPlist.strings */; }; 24 | C9F46C971912DA97007EE701 /* RSSTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F46C961912DA97007EE701 /* RSSTests.m */; }; 25 | /* End PBXBuildFile section */ 26 | 27 | /* Begin PBXContainerItemProxy section */ 28 | C9F46C8E1912DA97007EE701 /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = C9F46C5D1912DA97007EE701 /* Project object */; 31 | proxyType = 1; 32 | remoteGlobalIDString = C9F46C641912DA97007EE701; 33 | remoteInfo = RSS; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | C9F46C651912DA97007EE701 /* RSS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RSS.app; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | C9F46C681912DA97007EE701 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 40 | C9F46C6A1912DA97007EE701 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 41 | C9F46C6C1912DA97007EE701 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 42 | C9F46C701912DA97007EE701 /* RSS-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RSS-Info.plist"; sourceTree = ""; }; 43 | C9F46C721912DA97007EE701 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 44 | C9F46C741912DA97007EE701 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 45 | C9F46C761912DA97007EE701 /* RSS-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RSS-Prefix.pch"; sourceTree = ""; }; 46 | C9F46C771912DA97007EE701 /* RSSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RSSAppDelegate.h; sourceTree = ""; }; 47 | C9F46C781912DA97007EE701 /* RSSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RSSAppDelegate.m; sourceTree = ""; }; 48 | C9F46C7B1912DA97007EE701 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPhone.storyboard; sourceTree = ""; }; 49 | C9F46C7E1912DA97007EE701 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPad.storyboard; sourceTree = ""; }; 50 | C9F46C801912DA97007EE701 /* RSSViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RSSViewController.h; sourceTree = ""; }; 51 | C9F46C811912DA97007EE701 /* RSSViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RSSViewController.m; sourceTree = ""; }; 52 | C9F46C831912DA97007EE701 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 53 | C9F46C891912DA97007EE701 /* RSSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RSSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | C9F46C8A1912DA97007EE701 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 55 | C9F46C921912DA97007EE701 /* RSSTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RSSTests-Info.plist"; sourceTree = ""; }; 56 | C9F46C941912DA97007EE701 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 57 | C9F46C961912DA97007EE701 /* RSSTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RSSTests.m; sourceTree = ""; }; 58 | /* End PBXFileReference section */ 59 | 60 | /* Begin PBXFrameworksBuildPhase section */ 61 | C9F46C621912DA97007EE701 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | C9F46C6B1912DA97007EE701 /* CoreGraphics.framework in Frameworks */, 66 | C9F46C6D1912DA97007EE701 /* UIKit.framework in Frameworks */, 67 | C9F46C691912DA97007EE701 /* Foundation.framework in Frameworks */, 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | C9F46C861912DA97007EE701 /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | C9F46C8B1912DA97007EE701 /* XCTest.framework in Frameworks */, 76 | C9F46C8D1912DA97007EE701 /* UIKit.framework in Frameworks */, 77 | C9F46C8C1912DA97007EE701 /* Foundation.framework in Frameworks */, 78 | ); 79 | runOnlyForDeploymentPostprocessing = 0; 80 | }; 81 | /* End PBXFrameworksBuildPhase section */ 82 | 83 | /* Begin PBXGroup section */ 84 | C9F46C5C1912DA97007EE701 = { 85 | isa = PBXGroup; 86 | children = ( 87 | C9F46C6E1912DA97007EE701 /* RSS */, 88 | C9F46C901912DA97007EE701 /* RSSTests */, 89 | C9F46C671912DA97007EE701 /* Frameworks */, 90 | C9F46C661912DA97007EE701 /* Products */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | C9F46C661912DA97007EE701 /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | C9F46C651912DA97007EE701 /* RSS.app */, 98 | C9F46C891912DA97007EE701 /* RSSTests.xctest */, 99 | ); 100 | name = Products; 101 | sourceTree = ""; 102 | }; 103 | C9F46C671912DA97007EE701 /* Frameworks */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | C9F46C681912DA97007EE701 /* Foundation.framework */, 107 | C9F46C6A1912DA97007EE701 /* CoreGraphics.framework */, 108 | C9F46C6C1912DA97007EE701 /* UIKit.framework */, 109 | C9F46C8A1912DA97007EE701 /* XCTest.framework */, 110 | ); 111 | name = Frameworks; 112 | sourceTree = ""; 113 | }; 114 | C9F46C6E1912DA97007EE701 /* RSS */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | C9F46C771912DA97007EE701 /* RSSAppDelegate.h */, 118 | C9F46C781912DA97007EE701 /* RSSAppDelegate.m */, 119 | C9F46C7A1912DA97007EE701 /* Main_iPhone.storyboard */, 120 | C9F46C7D1912DA97007EE701 /* Main_iPad.storyboard */, 121 | C9F46C801912DA97007EE701 /* RSSViewController.h */, 122 | C9F46C811912DA97007EE701 /* RSSViewController.m */, 123 | C9F46C831912DA97007EE701 /* Images.xcassets */, 124 | C9F46C6F1912DA97007EE701 /* Supporting Files */, 125 | ); 126 | path = RSS; 127 | sourceTree = ""; 128 | }; 129 | C9F46C6F1912DA97007EE701 /* Supporting Files */ = { 130 | isa = PBXGroup; 131 | children = ( 132 | C9F46C701912DA97007EE701 /* RSS-Info.plist */, 133 | C9F46C711912DA97007EE701 /* InfoPlist.strings */, 134 | C9F46C741912DA97007EE701 /* main.m */, 135 | C9F46C761912DA97007EE701 /* RSS-Prefix.pch */, 136 | ); 137 | name = "Supporting Files"; 138 | sourceTree = ""; 139 | }; 140 | C9F46C901912DA97007EE701 /* RSSTests */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | C9F46C961912DA97007EE701 /* RSSTests.m */, 144 | C9F46C911912DA97007EE701 /* Supporting Files */, 145 | ); 146 | path = RSSTests; 147 | sourceTree = ""; 148 | }; 149 | C9F46C911912DA97007EE701 /* Supporting Files */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | C9F46C921912DA97007EE701 /* RSSTests-Info.plist */, 153 | C9F46C931912DA97007EE701 /* InfoPlist.strings */, 154 | ); 155 | name = "Supporting Files"; 156 | sourceTree = ""; 157 | }; 158 | /* End PBXGroup section */ 159 | 160 | /* Begin PBXNativeTarget section */ 161 | C9F46C641912DA97007EE701 /* RSS */ = { 162 | isa = PBXNativeTarget; 163 | buildConfigurationList = C9F46C9A1912DA97007EE701 /* Build configuration list for PBXNativeTarget "RSS" */; 164 | buildPhases = ( 165 | C9F46C611912DA97007EE701 /* Sources */, 166 | C9F46C621912DA97007EE701 /* Frameworks */, 167 | C9F46CA01912DAB2007EE701 /* Export Sketch Assets */, 168 | C9F46C631912DA97007EE701 /* Resources */, 169 | ); 170 | buildRules = ( 171 | ); 172 | dependencies = ( 173 | ); 174 | name = RSS; 175 | productName = RSS; 176 | productReference = C9F46C651912DA97007EE701 /* RSS.app */; 177 | productType = "com.apple.product-type.application"; 178 | }; 179 | C9F46C881912DA97007EE701 /* RSSTests */ = { 180 | isa = PBXNativeTarget; 181 | buildConfigurationList = C9F46C9D1912DA97007EE701 /* Build configuration list for PBXNativeTarget "RSSTests" */; 182 | buildPhases = ( 183 | C9F46C851912DA97007EE701 /* Sources */, 184 | C9F46C861912DA97007EE701 /* Frameworks */, 185 | C9F46C871912DA97007EE701 /* Resources */, 186 | ); 187 | buildRules = ( 188 | ); 189 | dependencies = ( 190 | C9F46C8F1912DA97007EE701 /* PBXTargetDependency */, 191 | ); 192 | name = RSSTests; 193 | productName = RSSTests; 194 | productReference = C9F46C891912DA97007EE701 /* RSSTests.xctest */; 195 | productType = "com.apple.product-type.bundle.unit-test"; 196 | }; 197 | /* End PBXNativeTarget section */ 198 | 199 | /* Begin PBXProject section */ 200 | C9F46C5D1912DA97007EE701 /* Project object */ = { 201 | isa = PBXProject; 202 | attributes = { 203 | CLASSPREFIX = RSS; 204 | LastUpgradeCheck = 0510; 205 | ORGANIZATIONNAME = "Matt Zanchelli"; 206 | TargetAttributes = { 207 | C9F46C881912DA97007EE701 = { 208 | TestTargetID = C9F46C641912DA97007EE701; 209 | }; 210 | }; 211 | }; 212 | buildConfigurationList = C9F46C601912DA97007EE701 /* Build configuration list for PBXProject "RSS" */; 213 | compatibilityVersion = "Xcode 3.2"; 214 | developmentRegion = English; 215 | hasScannedForEncodings = 0; 216 | knownRegions = ( 217 | en, 218 | Base, 219 | ); 220 | mainGroup = C9F46C5C1912DA97007EE701; 221 | productRefGroup = C9F46C661912DA97007EE701 /* Products */; 222 | projectDirPath = ""; 223 | projectRoot = ""; 224 | targets = ( 225 | C9F46C641912DA97007EE701 /* RSS */, 226 | C9F46C881912DA97007EE701 /* RSSTests */, 227 | ); 228 | }; 229 | /* End PBXProject section */ 230 | 231 | /* Begin PBXResourcesBuildPhase section */ 232 | C9F46C631912DA97007EE701 /* Resources */ = { 233 | isa = PBXResourcesBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | C9F46C7F1912DA97007EE701 /* Main_iPad.storyboard in Resources */, 237 | C9F46C841912DA97007EE701 /* Images.xcassets in Resources */, 238 | C9F46C7C1912DA97007EE701 /* Main_iPhone.storyboard in Resources */, 239 | C9F46C731912DA97007EE701 /* InfoPlist.strings in Resources */, 240 | ); 241 | runOnlyForDeploymentPostprocessing = 0; 242 | }; 243 | C9F46C871912DA97007EE701 /* Resources */ = { 244 | isa = PBXResourcesBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | C9F46C951912DA97007EE701 /* InfoPlist.strings in Resources */, 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | }; 251 | /* End PBXResourcesBuildPhase section */ 252 | 253 | /* Begin PBXShellScriptBuildPhase section */ 254 | C9F46CA01912DAB2007EE701 /* Export Sketch Assets */ = { 255 | isa = PBXShellScriptBuildPhase; 256 | buildActionMask = 2147483647; 257 | files = ( 258 | ); 259 | inputPaths = ( 260 | ); 261 | name = "Export Sketch Assets"; 262 | outputPaths = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | shellPath = /bin/sh; 266 | shellScript = "# AppIcon\nsketchtool export artboards \"$PROJECT_DIR\"/\"Graphics Resources/AppIcon.sketch\" --output=\"$PROJECT_DIR\"/\"$PROJECT_NAME\"/Images.xcassets/AppIcon.appiconset --formats=\"png\"\n\n# LaunchImage\nsketchtool export artboards \"$PROJECT_DIR\"/\"Graphics Resources/LaunchImage.sketch\" --output=\"$PROJECT_DIR\"/\"$PROJECT_NAME\"/Images.xcassets/LaunchImage.launchimage --formats=\"png\""; 267 | }; 268 | /* End PBXShellScriptBuildPhase section */ 269 | 270 | /* Begin PBXSourcesBuildPhase section */ 271 | C9F46C611912DA97007EE701 /* Sources */ = { 272 | isa = PBXSourcesBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | C9F46C751912DA97007EE701 /* main.m in Sources */, 276 | C9F46C821912DA97007EE701 /* RSSViewController.m in Sources */, 277 | C9F46C791912DA97007EE701 /* RSSAppDelegate.m in Sources */, 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | }; 281 | C9F46C851912DA97007EE701 /* Sources */ = { 282 | isa = PBXSourcesBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | C9F46C971912DA97007EE701 /* RSSTests.m in Sources */, 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | }; 289 | /* End PBXSourcesBuildPhase section */ 290 | 291 | /* Begin PBXTargetDependency section */ 292 | C9F46C8F1912DA97007EE701 /* PBXTargetDependency */ = { 293 | isa = PBXTargetDependency; 294 | target = C9F46C641912DA97007EE701 /* RSS */; 295 | targetProxy = C9F46C8E1912DA97007EE701 /* PBXContainerItemProxy */; 296 | }; 297 | /* End PBXTargetDependency section */ 298 | 299 | /* Begin PBXVariantGroup section */ 300 | C9F46C711912DA97007EE701 /* InfoPlist.strings */ = { 301 | isa = PBXVariantGroup; 302 | children = ( 303 | C9F46C721912DA97007EE701 /* en */, 304 | ); 305 | name = InfoPlist.strings; 306 | sourceTree = ""; 307 | }; 308 | C9F46C7A1912DA97007EE701 /* Main_iPhone.storyboard */ = { 309 | isa = PBXVariantGroup; 310 | children = ( 311 | C9F46C7B1912DA97007EE701 /* Base */, 312 | ); 313 | name = Main_iPhone.storyboard; 314 | sourceTree = ""; 315 | }; 316 | C9F46C7D1912DA97007EE701 /* Main_iPad.storyboard */ = { 317 | isa = PBXVariantGroup; 318 | children = ( 319 | C9F46C7E1912DA97007EE701 /* Base */, 320 | ); 321 | name = Main_iPad.storyboard; 322 | sourceTree = ""; 323 | }; 324 | C9F46C931912DA97007EE701 /* InfoPlist.strings */ = { 325 | isa = PBXVariantGroup; 326 | children = ( 327 | C9F46C941912DA97007EE701 /* en */, 328 | ); 329 | name = InfoPlist.strings; 330 | sourceTree = ""; 331 | }; 332 | /* End PBXVariantGroup section */ 333 | 334 | /* Begin XCBuildConfiguration section */ 335 | C9F46C981912DA97007EE701 /* Debug */ = { 336 | isa = XCBuildConfiguration; 337 | buildSettings = { 338 | ALWAYS_SEARCH_USER_PATHS = NO; 339 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 340 | CLANG_CXX_LIBRARY = "libc++"; 341 | CLANG_ENABLE_MODULES = YES; 342 | CLANG_ENABLE_OBJC_ARC = YES; 343 | CLANG_WARN_BOOL_CONVERSION = YES; 344 | CLANG_WARN_CONSTANT_CONVERSION = YES; 345 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 346 | CLANG_WARN_EMPTY_BODY = YES; 347 | CLANG_WARN_ENUM_CONVERSION = YES; 348 | CLANG_WARN_INT_CONVERSION = YES; 349 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 350 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 351 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 352 | COPY_PHASE_STRIP = NO; 353 | GCC_C_LANGUAGE_STANDARD = gnu99; 354 | GCC_DYNAMIC_NO_PIC = NO; 355 | GCC_OPTIMIZATION_LEVEL = 0; 356 | GCC_PREPROCESSOR_DEFINITIONS = ( 357 | "DEBUG=1", 358 | "$(inherited)", 359 | ); 360 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 361 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 362 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 363 | GCC_WARN_UNDECLARED_SELECTOR = YES; 364 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 365 | GCC_WARN_UNUSED_FUNCTION = YES; 366 | GCC_WARN_UNUSED_VARIABLE = YES; 367 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 368 | ONLY_ACTIVE_ARCH = YES; 369 | SDKROOT = iphoneos; 370 | TARGETED_DEVICE_FAMILY = "1,2"; 371 | }; 372 | name = Debug; 373 | }; 374 | C9F46C991912DA97007EE701 /* Release */ = { 375 | isa = XCBuildConfiguration; 376 | buildSettings = { 377 | ALWAYS_SEARCH_USER_PATHS = NO; 378 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 379 | CLANG_CXX_LIBRARY = "libc++"; 380 | CLANG_ENABLE_MODULES = YES; 381 | CLANG_ENABLE_OBJC_ARC = YES; 382 | CLANG_WARN_BOOL_CONVERSION = YES; 383 | CLANG_WARN_CONSTANT_CONVERSION = YES; 384 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 385 | CLANG_WARN_EMPTY_BODY = YES; 386 | CLANG_WARN_ENUM_CONVERSION = YES; 387 | CLANG_WARN_INT_CONVERSION = YES; 388 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 389 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 390 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 391 | COPY_PHASE_STRIP = YES; 392 | ENABLE_NS_ASSERTIONS = NO; 393 | GCC_C_LANGUAGE_STANDARD = gnu99; 394 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 395 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 396 | GCC_WARN_UNDECLARED_SELECTOR = YES; 397 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 398 | GCC_WARN_UNUSED_FUNCTION = YES; 399 | GCC_WARN_UNUSED_VARIABLE = YES; 400 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 401 | SDKROOT = iphoneos; 402 | TARGETED_DEVICE_FAMILY = "1,2"; 403 | VALIDATE_PRODUCT = YES; 404 | }; 405 | name = Release; 406 | }; 407 | C9F46C9B1912DA97007EE701 /* Debug */ = { 408 | isa = XCBuildConfiguration; 409 | buildSettings = { 410 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 411 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 412 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 413 | GCC_PREFIX_HEADER = "RSS/RSS-Prefix.pch"; 414 | INFOPLIST_FILE = "RSS/RSS-Info.plist"; 415 | PRODUCT_NAME = "$(TARGET_NAME)"; 416 | WRAPPER_EXTENSION = app; 417 | }; 418 | name = Debug; 419 | }; 420 | C9F46C9C1912DA97007EE701 /* Release */ = { 421 | isa = XCBuildConfiguration; 422 | buildSettings = { 423 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 424 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 425 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 426 | GCC_PREFIX_HEADER = "RSS/RSS-Prefix.pch"; 427 | INFOPLIST_FILE = "RSS/RSS-Info.plist"; 428 | PRODUCT_NAME = "$(TARGET_NAME)"; 429 | WRAPPER_EXTENSION = app; 430 | }; 431 | name = Release; 432 | }; 433 | C9F46C9E1912DA97007EE701 /* Debug */ = { 434 | isa = XCBuildConfiguration; 435 | buildSettings = { 436 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/RSS.app/RSS"; 437 | FRAMEWORK_SEARCH_PATHS = ( 438 | "$(SDKROOT)/Developer/Library/Frameworks", 439 | "$(inherited)", 440 | "$(DEVELOPER_FRAMEWORKS_DIR)", 441 | ); 442 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 443 | GCC_PREFIX_HEADER = "RSS/RSS-Prefix.pch"; 444 | GCC_PREPROCESSOR_DEFINITIONS = ( 445 | "DEBUG=1", 446 | "$(inherited)", 447 | ); 448 | INFOPLIST_FILE = "RSSTests/RSSTests-Info.plist"; 449 | PRODUCT_NAME = "$(TARGET_NAME)"; 450 | TEST_HOST = "$(BUNDLE_LOADER)"; 451 | WRAPPER_EXTENSION = xctest; 452 | }; 453 | name = Debug; 454 | }; 455 | C9F46C9F1912DA97007EE701 /* Release */ = { 456 | isa = XCBuildConfiguration; 457 | buildSettings = { 458 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/RSS.app/RSS"; 459 | FRAMEWORK_SEARCH_PATHS = ( 460 | "$(SDKROOT)/Developer/Library/Frameworks", 461 | "$(inherited)", 462 | "$(DEVELOPER_FRAMEWORKS_DIR)", 463 | ); 464 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 465 | GCC_PREFIX_HEADER = "RSS/RSS-Prefix.pch"; 466 | INFOPLIST_FILE = "RSSTests/RSSTests-Info.plist"; 467 | PRODUCT_NAME = "$(TARGET_NAME)"; 468 | TEST_HOST = "$(BUNDLE_LOADER)"; 469 | WRAPPER_EXTENSION = xctest; 470 | }; 471 | name = Release; 472 | }; 473 | /* End XCBuildConfiguration section */ 474 | 475 | /* Begin XCConfigurationList section */ 476 | C9F46C601912DA97007EE701 /* Build configuration list for PBXProject "RSS" */ = { 477 | isa = XCConfigurationList; 478 | buildConfigurations = ( 479 | C9F46C981912DA97007EE701 /* Debug */, 480 | C9F46C991912DA97007EE701 /* Release */, 481 | ); 482 | defaultConfigurationIsVisible = 0; 483 | defaultConfigurationName = Release; 484 | }; 485 | C9F46C9A1912DA97007EE701 /* Build configuration list for PBXNativeTarget "RSS" */ = { 486 | isa = XCConfigurationList; 487 | buildConfigurations = ( 488 | C9F46C9B1912DA97007EE701 /* Debug */, 489 | C9F46C9C1912DA97007EE701 /* Release */, 490 | ); 491 | defaultConfigurationIsVisible = 0; 492 | defaultConfigurationName = Release; 493 | }; 494 | C9F46C9D1912DA97007EE701 /* Build configuration list for PBXNativeTarget "RSSTests" */ = { 495 | isa = XCConfigurationList; 496 | buildConfigurations = ( 497 | C9F46C9E1912DA97007EE701 /* Debug */, 498 | C9F46C9F1912DA97007EE701 /* Release */, 499 | ); 500 | defaultConfigurationIsVisible = 0; 501 | defaultConfigurationName = Release; 502 | }; 503 | /* End XCConfigurationList section */ 504 | }; 505 | rootObject = C9F46C5D1912DA97007EE701 /* Project object */; 506 | } 507 | -------------------------------------------------------------------------------- /RSS/RSS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RSS/RSS.xcodeproj/project.xcworkspace/xcuserdata/matt.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS.xcodeproj/project.xcworkspace/xcuserdata/matt.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RSS/RSS.xcodeproj/xcuserdata/matt.xcuserdatad/xcschemes/RSS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /RSS/RSS.xcodeproj/xcuserdata/matt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | RSS.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | C9F46C641912DA97007EE701 16 | 17 | primary 18 | 19 | 20 | C9F46C881912DA97007EE701 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /RSS/RSS/Base.lproj/Main_iPad.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 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /RSS/RSS/Base.lproj/Main_iPhone.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 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-App~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-App~iPad.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-App~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-App~iPad@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-App~iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-App~iPhone@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Settings~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Settings~iPad.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Settings~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Settings~iPad@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Settings~iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Settings~iPhone@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Spotlight~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Spotlight~iPad.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Spotlight~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Spotlight~iPad@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Spotlight~iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/AppIcon.appiconset/AppIcon-Spotlight~iPhone@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "29x29", 5 | "idiom" : "iphone", 6 | "filename" : "AppIcon-Settings~iPhone@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "40x40", 11 | "idiom" : "iphone", 12 | "filename" : "AppIcon-Spotlight~iPhone@2x.png", 13 | "scale" : "2x" 14 | }, 15 | { 16 | "size" : "60x60", 17 | "idiom" : "iphone", 18 | "filename" : "AppIcon-App~iPhone@2x.png", 19 | "scale" : "2x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "ipad", 24 | "filename" : "AppIcon-Settings~iPad.png", 25 | "scale" : "1x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "ipad", 30 | "filename" : "AppIcon-Settings~iPad@2x.png", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "ipad", 36 | "filename" : "AppIcon-Spotlight~iPad.png", 37 | "scale" : "1x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "ipad", 42 | "filename" : "AppIcon-Spotlight~iPad@2x.png", 43 | "scale" : "2x" 44 | }, 45 | { 46 | "size" : "76x76", 47 | "idiom" : "ipad", 48 | "filename" : "AppIcon-App~iPad.png", 49 | "scale" : "1x" 50 | }, 51 | { 52 | "size" : "76x76", 53 | "idiom" : "ipad", 54 | "filename" : "AppIcon-App~iPad@2x.png", 55 | "scale" : "2x" 56 | } 57 | ], 58 | "info" : { 59 | "version" : 1, 60 | "author" : "xcode" 61 | } 62 | } -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "filename" : "LaunchImage-Portrait~iPhone@2x.png", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "extent" : "full-screen", 13 | "idiom" : "iphone", 14 | "subtype" : "retina4", 15 | "filename" : "LaunchImage-Portrait-R4~iPhone@2x.png", 16 | "minimum-system-version" : "7.0", 17 | "orientation" : "portrait", 18 | "scale" : "2x" 19 | }, 20 | { 21 | "orientation" : "portrait", 22 | "idiom" : "ipad", 23 | "extent" : "full-screen", 24 | "minimum-system-version" : "7.0", 25 | "filename" : "LaunchImage-Portrait~iPad.png", 26 | "scale" : "1x" 27 | }, 28 | { 29 | "orientation" : "landscape", 30 | "idiom" : "ipad", 31 | "extent" : "full-screen", 32 | "minimum-system-version" : "7.0", 33 | "filename" : "LaunchImage-Landscape~iPad.png", 34 | "scale" : "1x" 35 | }, 36 | { 37 | "orientation" : "portrait", 38 | "idiom" : "ipad", 39 | "extent" : "full-screen", 40 | "minimum-system-version" : "7.0", 41 | "filename" : "LaunchImage-Portrait~iPad@2x.png", 42 | "scale" : "2x" 43 | }, 44 | { 45 | "orientation" : "landscape", 46 | "idiom" : "ipad", 47 | "extent" : "full-screen", 48 | "minimum-system-version" : "7.0", 49 | "filename" : "LaunchImage-Landscape~iPad@2x.png", 50 | "scale" : "2x" 51 | } 52 | ], 53 | "info" : { 54 | "version" : 1, 55 | "author" : "xcode" 56 | } 57 | } -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~iPad.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~iPad@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait-R4~iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait-R4~iPhone@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~iPad.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~iPad@2x.png -------------------------------------------------------------------------------- /RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/RSS/RSS/Images.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~iPhone@2x.png -------------------------------------------------------------------------------- /RSS/RSS/RSS-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | mattzanchelli.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main_iPhone 29 | UIMainStoryboardFile~ipad 30 | Main_iPad 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /RSS/RSS/RSS-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 | -------------------------------------------------------------------------------- /RSS/RSS/RSSAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSSAppDelegate.h 3 | // RSS 4 | // 5 | // Created by Matt Zanchelli on 5/1/14. 6 | // Copyright (c) 2014 Matt Zanchelli. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSSAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSS/RSS/RSSAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSSAppDelegate.m 3 | // RSS 4 | // 5 | // Created by Matt Zanchelli on 5/1/14. 6 | // Copyright (c) 2014 Matt Zanchelli. All rights reserved. 7 | // 8 | 9 | #import "RSSAppDelegate.h" 10 | 11 | @implementation RSSAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /RSS/RSS/RSSViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSSViewController.h 3 | // RSS 4 | // 5 | // Created by Matt Zanchelli on 5/1/14. 6 | // Copyright (c) 2014 Matt Zanchelli. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSSViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /RSS/RSS/RSSViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSSViewController.m 3 | // RSS 4 | // 5 | // Created by Matt Zanchelli on 5/1/14. 6 | // Copyright (c) 2014 Matt Zanchelli. All rights reserved. 7 | // 8 | 9 | #import "RSSViewController.h" 10 | 11 | @interface RSSViewController () 12 | 13 | @end 14 | 15 | @implementation RSSViewController 16 | 17 | - (void)viewDidLoad 18 | { 19 | [super viewDidLoad]; 20 | // Do any additional setup after loading the view, typically from a nib. 21 | } 22 | 23 | - (void)didReceiveMemoryWarning 24 | { 25 | [super didReceiveMemoryWarning]; 26 | // Dispose of any resources that can be recreated. 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /RSS/RSS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RSS/RSS/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RSS 4 | // 5 | // Created by Matt Zanchelli on 5/1/14. 6 | // Copyright (c) 2014 Matt Zanchelli. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "RSSAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([RSSAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RSS/RSSTests/RSSTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | mattzanchelli.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /RSS/RSSTests/RSSTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSSTests.m 3 | // RSSTests 4 | // 5 | // Created by Matt Zanchelli on 5/1/14. 6 | // Copyright (c) 2014 Matt Zanchelli. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSSTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation RSSTests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /RSS/RSSTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Sketch-Xcode/c375ea0a8ac8b0004c720c6a15b97769462fa1bf/Screenshot.png --------------------------------------------------------------------------------