├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── RSSReader.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ └── susieyy.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── RSSReader.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── RSSReader.xccheckout ├── RSSReader ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── launchimage.png │ │ └── launchimage4inch.png ├── Info.plist ├── RSSReader-Bridging-Header.h ├── ViewController.swift └── logo.png ├── RSSReaderTests ├── Info.plist └── RSSReaderTests.swift ├── movie.gif └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.pbxuser 3 | !default.pbxuser 4 | *.mode1v3 5 | !default.mode1v3 6 | *.mode2v3 7 | !default.mode2v3 8 | *.perspectivev3 9 | !default.perspectivev3 10 | xcuserdata 11 | *.xccheckout 12 | *.moved-aside 13 | DerivedData 14 | *.xcuserstate 15 | Pods 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Wantedly.com 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 13 | all 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 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '7.0' 2 | 3 | pod 'SVProgressHUD' 4 | pod 'MWFeedParser' 5 | pod 'KINWebBrowser' 6 | pod 'AFNetworking' -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AFNetworking (2.2.4): 3 | - AFNetworking/NSURLConnection 4 | - AFNetworking/NSURLSession 5 | - AFNetworking/Reachability 6 | - AFNetworking/Security 7 | - AFNetworking/Serialization 8 | - AFNetworking/UIKit 9 | - AFNetworking/NSURLConnection (2.2.4): 10 | - AFNetworking/Reachability 11 | - AFNetworking/Security 12 | - AFNetworking/Serialization 13 | - AFNetworking/NSURLSession (2.2.4): 14 | - AFNetworking/NSURLConnection 15 | - AFNetworking/Reachability (2.2.4) 16 | - AFNetworking/Security (2.2.4) 17 | - AFNetworking/Serialization (2.2.4) 18 | - AFNetworking/UIKit (2.2.4): 19 | - AFNetworking/NSURLConnection 20 | - AFNetworking/NSURLSession 21 | - KINWebBrowser (0.2.4) 22 | - MWFeedParser (1.0.1): 23 | - MWFeedParser/FeedParser 24 | - MWFeedParser/NSDate+InternetDateTime 25 | - MWFeedParser/NSString+HTML 26 | - MWFeedParser/FeedParser (1.0.1): 27 | - MWFeedParser/NSDate+InternetDateTime 28 | - MWFeedParser/NSString+HTML 29 | - MWFeedParser/NSDate+InternetDateTime (1.0.1) 30 | - MWFeedParser/NSString+HTML (1.0.1) 31 | - SVProgressHUD (1.0) 32 | 33 | DEPENDENCIES: 34 | - AFNetworking 35 | - KINWebBrowser 36 | - MWFeedParser 37 | - SVProgressHUD 38 | 39 | SPEC CHECKSUMS: 40 | AFNetworking: ab63e259fe91eef4519b371ef0a4955af0e73e64 41 | KINWebBrowser: 466c88a47d28e36ca202f312d9b8f756791b8c63 42 | MWFeedParser: 003cbf5398e99a7f2057fbe9583054fd1b84be72 43 | SVProgressHUD: 5034c6e22b8c2ca3e09402e48d41ed0340aa1c50 44 | 45 | COCOAPODS: 0.32.1 46 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | Swift RSS Sample 3 | ================ 4 | 5 | An RSS reader app written in [Swift](https://developer.apple.com/swift/). About 100 lines of code and written within about an hour. Proved Swift is a good programming language :-) 6 | 7 | ![Movie](movie.gif) 8 | 9 | 10 | 11 | 12 | 13 | We are hiring! Looking for [Swift programmer](https://www.wantedly.com/projects/7755) :-p 14 | 15 | (日本語) [Swiftなら誰にも負けないiOSエンジニア・ウォンテッド!!](https://www.wantedly.com/projects/7755) 16 | 17 | ### Installation 18 | 19 | Using [CocoaPods](http://cocoapods.org). 20 | 21 | ```sh 22 | pod install 23 | ``` 24 | 25 | ### LICENSE 26 | 27 | This software is released under the MIT License, see LICENSE. -------------------------------------------------------------------------------- /RSSReader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | AA8AA144194362C900C3888B /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = AA8AA143194362C900C3888B /* logo.png */; }; 11 | AAC02B19193DEEFE003997F3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAC02B18193DEEFE003997F3 /* AppDelegate.swift */; }; 12 | AAC02B1B193DEEFE003997F3 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAC02B1A193DEEFE003997F3 /* ViewController.swift */; }; 13 | AAC02B1E193DEEFE003997F3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AAC02B1C193DEEFE003997F3 /* Main.storyboard */; }; 14 | AAC02B20193DEEFE003997F3 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AAC02B1F193DEEFE003997F3 /* Images.xcassets */; }; 15 | AAC02B2C193DEEFE003997F3 /* RSSReaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAC02B2B193DEEFE003997F3 /* RSSReaderTests.swift */; }; 16 | AAC02B3A193DF344003997F3 /* Podfile in Resources */ = {isa = PBXBuildFile; fileRef = AAC02B39193DF344003997F3 /* Podfile */; }; 17 | BFBD447B1C0843409AC9A3C4 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AFE16BB7AB9C49C5B4EFAE90 /* libPods.a */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | AAC02B26193DEEFE003997F3 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = AAC02B0B193DEEFE003997F3 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = AAC02B12193DEEFE003997F3; 26 | remoteInfo = RSSReader; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | AA8AA143194362C900C3888B /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = ""; }; 32 | AAC02B13193DEEFE003997F3 /* RSSReader.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RSSReader.app; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | AAC02B17193DEEFE003997F3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 34 | AAC02B18193DEEFE003997F3 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 35 | AAC02B1A193DEEFE003997F3 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 36 | AAC02B1D193DEEFE003997F3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 37 | AAC02B1F193DEEFE003997F3 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 38 | AAC02B25193DEEFE003997F3 /* RSSReaderTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RSSReaderTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | AAC02B2A193DEEFE003997F3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | AAC02B2B193DEEFE003997F3 /* RSSReaderTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RSSReaderTests.swift; sourceTree = ""; }; 41 | AAC02B35193DF2B8003997F3 /* RSSReader-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RSSReader-Bridging-Header.h"; sourceTree = ""; }; 42 | AAC02B39193DF344003997F3 /* Podfile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Podfile; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 43 | AFE16BB7AB9C49C5B4EFAE90 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | E885CC41F32F4E3AA56367A0 /* Pods.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.xcconfig; path = Pods/Pods.xcconfig; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | AAC02B10193DEEFE003997F3 /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | BFBD447B1C0843409AC9A3C4 /* libPods.a in Frameworks */, 53 | ); 54 | runOnlyForDeploymentPostprocessing = 0; 55 | }; 56 | AAC02B22193DEEFE003997F3 /* Frameworks */ = { 57 | isa = PBXFrameworksBuildPhase; 58 | buildActionMask = 2147483647; 59 | files = ( 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | /* End PBXFrameworksBuildPhase section */ 64 | 65 | /* Begin PBXGroup section */ 66 | 70FA9D20B8584551BECCAF8B /* Frameworks */ = { 67 | isa = PBXGroup; 68 | children = ( 69 | AFE16BB7AB9C49C5B4EFAE90 /* libPods.a */, 70 | ); 71 | name = Frameworks; 72 | sourceTree = ""; 73 | }; 74 | AAC02B0A193DEEFE003997F3 = { 75 | isa = PBXGroup; 76 | children = ( 77 | AAC02B39193DF344003997F3 /* Podfile */, 78 | AAC02B15193DEEFE003997F3 /* RSSReader */, 79 | AAC02B28193DEEFE003997F3 /* RSSReaderTests */, 80 | AAC02B14193DEEFE003997F3 /* Products */, 81 | E885CC41F32F4E3AA56367A0 /* Pods.xcconfig */, 82 | 70FA9D20B8584551BECCAF8B /* Frameworks */, 83 | ); 84 | sourceTree = ""; 85 | }; 86 | AAC02B14193DEEFE003997F3 /* Products */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | AAC02B13193DEEFE003997F3 /* RSSReader.app */, 90 | AAC02B25193DEEFE003997F3 /* RSSReaderTests.xctest */, 91 | ); 92 | name = Products; 93 | sourceTree = ""; 94 | }; 95 | AAC02B15193DEEFE003997F3 /* RSSReader */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | AA8AA143194362C900C3888B /* logo.png */, 99 | AAC02B18193DEEFE003997F3 /* AppDelegate.swift */, 100 | AAC02B1A193DEEFE003997F3 /* ViewController.swift */, 101 | AAC02B1C193DEEFE003997F3 /* Main.storyboard */, 102 | AAC02B1F193DEEFE003997F3 /* Images.xcassets */, 103 | AAC02B16193DEEFE003997F3 /* Supporting Files */, 104 | AAC02B35193DF2B8003997F3 /* RSSReader-Bridging-Header.h */, 105 | ); 106 | path = RSSReader; 107 | sourceTree = ""; 108 | }; 109 | AAC02B16193DEEFE003997F3 /* Supporting Files */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | AAC02B17193DEEFE003997F3 /* Info.plist */, 113 | ); 114 | name = "Supporting Files"; 115 | sourceTree = ""; 116 | }; 117 | AAC02B28193DEEFE003997F3 /* RSSReaderTests */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | AAC02B2B193DEEFE003997F3 /* RSSReaderTests.swift */, 121 | AAC02B29193DEEFE003997F3 /* Supporting Files */, 122 | ); 123 | path = RSSReaderTests; 124 | sourceTree = ""; 125 | }; 126 | AAC02B29193DEEFE003997F3 /* Supporting Files */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | AAC02B2A193DEEFE003997F3 /* Info.plist */, 130 | ); 131 | name = "Supporting Files"; 132 | sourceTree = ""; 133 | }; 134 | /* End PBXGroup section */ 135 | 136 | /* Begin PBXNativeTarget section */ 137 | AAC02B12193DEEFE003997F3 /* RSSReader */ = { 138 | isa = PBXNativeTarget; 139 | buildConfigurationList = AAC02B2F193DEEFE003997F3 /* Build configuration list for PBXNativeTarget "RSSReader" */; 140 | buildPhases = ( 141 | 02FC4CDD8BDA4695B7FC7560 /* Check Pods Manifest.lock */, 142 | AAC02B0F193DEEFE003997F3 /* Sources */, 143 | AAC02B10193DEEFE003997F3 /* Frameworks */, 144 | AAC02B11193DEEFE003997F3 /* Resources */, 145 | 5D1F79F4E393422A8E38BE19 /* Copy Pods Resources */, 146 | ); 147 | buildRules = ( 148 | ); 149 | dependencies = ( 150 | ); 151 | name = RSSReader; 152 | productName = RSSReader; 153 | productReference = AAC02B13193DEEFE003997F3 /* RSSReader.app */; 154 | productType = "com.apple.product-type.application"; 155 | }; 156 | AAC02B24193DEEFE003997F3 /* RSSReaderTests */ = { 157 | isa = PBXNativeTarget; 158 | buildConfigurationList = AAC02B32193DEEFE003997F3 /* Build configuration list for PBXNativeTarget "RSSReaderTests" */; 159 | buildPhases = ( 160 | AAC02B21193DEEFE003997F3 /* Sources */, 161 | AAC02B22193DEEFE003997F3 /* Frameworks */, 162 | AAC02B23193DEEFE003997F3 /* Resources */, 163 | ); 164 | buildRules = ( 165 | ); 166 | dependencies = ( 167 | AAC02B27193DEEFE003997F3 /* PBXTargetDependency */, 168 | ); 169 | name = RSSReaderTests; 170 | productName = RSSReaderTests; 171 | productReference = AAC02B25193DEEFE003997F3 /* RSSReaderTests.xctest */; 172 | productType = "com.apple.product-type.bundle.unit-test"; 173 | }; 174 | /* End PBXNativeTarget section */ 175 | 176 | /* Begin PBXProject section */ 177 | AAC02B0B193DEEFE003997F3 /* Project object */ = { 178 | isa = PBXProject; 179 | attributes = { 180 | LastUpgradeCheck = 0600; 181 | ORGANIZATIONNAME = susieyy; 182 | TargetAttributes = { 183 | AAC02B12193DEEFE003997F3 = { 184 | CreatedOnToolsVersion = 6.0; 185 | }; 186 | AAC02B24193DEEFE003997F3 = { 187 | CreatedOnToolsVersion = 6.0; 188 | TestTargetID = AAC02B12193DEEFE003997F3; 189 | }; 190 | }; 191 | }; 192 | buildConfigurationList = AAC02B0E193DEEFE003997F3 /* Build configuration list for PBXProject "RSSReader" */; 193 | compatibilityVersion = "Xcode 3.2"; 194 | developmentRegion = English; 195 | hasScannedForEncodings = 0; 196 | knownRegions = ( 197 | en, 198 | Base, 199 | ); 200 | mainGroup = AAC02B0A193DEEFE003997F3; 201 | productRefGroup = AAC02B14193DEEFE003997F3 /* Products */; 202 | projectDirPath = ""; 203 | projectRoot = ""; 204 | targets = ( 205 | AAC02B12193DEEFE003997F3 /* RSSReader */, 206 | AAC02B24193DEEFE003997F3 /* RSSReaderTests */, 207 | ); 208 | }; 209 | /* End PBXProject section */ 210 | 211 | /* Begin PBXResourcesBuildPhase section */ 212 | AAC02B11193DEEFE003997F3 /* Resources */ = { 213 | isa = PBXResourcesBuildPhase; 214 | buildActionMask = 2147483647; 215 | files = ( 216 | AA8AA144194362C900C3888B /* logo.png in Resources */, 217 | AAC02B3A193DF344003997F3 /* Podfile in Resources */, 218 | AAC02B1E193DEEFE003997F3 /* Main.storyboard in Resources */, 219 | AAC02B20193DEEFE003997F3 /* Images.xcassets in Resources */, 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | }; 223 | AAC02B23193DEEFE003997F3 /* Resources */ = { 224 | isa = PBXResourcesBuildPhase; 225 | buildActionMask = 2147483647; 226 | files = ( 227 | ); 228 | runOnlyForDeploymentPostprocessing = 0; 229 | }; 230 | /* End PBXResourcesBuildPhase section */ 231 | 232 | /* Begin PBXShellScriptBuildPhase section */ 233 | 02FC4CDD8BDA4695B7FC7560 /* Check Pods Manifest.lock */ = { 234 | isa = PBXShellScriptBuildPhase; 235 | buildActionMask = 2147483647; 236 | files = ( 237 | ); 238 | inputPaths = ( 239 | ); 240 | name = "Check Pods Manifest.lock"; 241 | outputPaths = ( 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | shellPath = /bin/sh; 245 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 246 | showEnvVarsInLog = 0; 247 | }; 248 | 5D1F79F4E393422A8E38BE19 /* Copy Pods Resources */ = { 249 | isa = PBXShellScriptBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | ); 253 | inputPaths = ( 254 | ); 255 | name = "Copy Pods Resources"; 256 | outputPaths = ( 257 | ); 258 | runOnlyForDeploymentPostprocessing = 0; 259 | shellPath = /bin/sh; 260 | shellScript = "\"${SRCROOT}/Pods/Pods-resources.sh\"\n"; 261 | showEnvVarsInLog = 0; 262 | }; 263 | /* End PBXShellScriptBuildPhase section */ 264 | 265 | /* Begin PBXSourcesBuildPhase section */ 266 | AAC02B0F193DEEFE003997F3 /* Sources */ = { 267 | isa = PBXSourcesBuildPhase; 268 | buildActionMask = 2147483647; 269 | files = ( 270 | AAC02B1B193DEEFE003997F3 /* ViewController.swift in Sources */, 271 | AAC02B19193DEEFE003997F3 /* AppDelegate.swift in Sources */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | AAC02B21193DEEFE003997F3 /* Sources */ = { 276 | isa = PBXSourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | AAC02B2C193DEEFE003997F3 /* RSSReaderTests.swift in Sources */, 280 | ); 281 | runOnlyForDeploymentPostprocessing = 0; 282 | }; 283 | /* End PBXSourcesBuildPhase section */ 284 | 285 | /* Begin PBXTargetDependency section */ 286 | AAC02B27193DEEFE003997F3 /* PBXTargetDependency */ = { 287 | isa = PBXTargetDependency; 288 | target = AAC02B12193DEEFE003997F3 /* RSSReader */; 289 | targetProxy = AAC02B26193DEEFE003997F3 /* PBXContainerItemProxy */; 290 | }; 291 | /* End PBXTargetDependency section */ 292 | 293 | /* Begin PBXVariantGroup section */ 294 | AAC02B1C193DEEFE003997F3 /* Main.storyboard */ = { 295 | isa = PBXVariantGroup; 296 | children = ( 297 | AAC02B1D193DEEFE003997F3 /* Base */, 298 | ); 299 | name = Main.storyboard; 300 | sourceTree = ""; 301 | }; 302 | /* End PBXVariantGroup section */ 303 | 304 | /* Begin XCBuildConfiguration section */ 305 | AAC02B2D193DEEFE003997F3 /* Debug */ = { 306 | isa = XCBuildConfiguration; 307 | buildSettings = { 308 | ALWAYS_SEARCH_USER_PATHS = NO; 309 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 310 | CLANG_CXX_LIBRARY = "libc++"; 311 | CLANG_ENABLE_MODULES = YES; 312 | CLANG_ENABLE_OBJC_ARC = YES; 313 | CLANG_WARN_BOOL_CONVERSION = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 316 | CLANG_WARN_EMPTY_BODY = YES; 317 | CLANG_WARN_ENUM_CONVERSION = YES; 318 | CLANG_WARN_INT_CONVERSION = YES; 319 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 320 | CLANG_WARN_UNREACHABLE_CODE = YES; 321 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 322 | CODE_SIGN_IDENTITY = "iPhone Developer"; 323 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 324 | COPY_PHASE_STRIP = NO; 325 | ENABLE_STRICT_OBJC_MSGSEND = YES; 326 | GCC_C_LANGUAGE_STANDARD = gnu99; 327 | GCC_DYNAMIC_NO_PIC = NO; 328 | GCC_OPTIMIZATION_LEVEL = 0; 329 | GCC_PREPROCESSOR_DEFINITIONS = ( 330 | "DEBUG=1", 331 | "$(inherited)", 332 | ); 333 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 334 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 335 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 336 | GCC_WARN_UNDECLARED_SELECTOR = YES; 337 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 338 | GCC_WARN_UNUSED_FUNCTION = YES; 339 | GCC_WARN_UNUSED_VARIABLE = YES; 340 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 341 | METAL_ENABLE_DEBUG_INFO = YES; 342 | ONLY_ACTIVE_ARCH = YES; 343 | SDKROOT = iphoneos; 344 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 345 | }; 346 | name = Debug; 347 | }; 348 | AAC02B2E193DEEFE003997F3 /* Release */ = { 349 | isa = XCBuildConfiguration; 350 | buildSettings = { 351 | ALWAYS_SEARCH_USER_PATHS = NO; 352 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 353 | CLANG_CXX_LIBRARY = "libc++"; 354 | CLANG_ENABLE_MODULES = YES; 355 | CLANG_ENABLE_OBJC_ARC = YES; 356 | CLANG_WARN_BOOL_CONVERSION = YES; 357 | CLANG_WARN_CONSTANT_CONVERSION = YES; 358 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 359 | CLANG_WARN_EMPTY_BODY = YES; 360 | CLANG_WARN_ENUM_CONVERSION = YES; 361 | CLANG_WARN_INT_CONVERSION = YES; 362 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 363 | CLANG_WARN_UNREACHABLE_CODE = YES; 364 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 365 | CODE_SIGN_IDENTITY = "iPhone Developer"; 366 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 367 | COPY_PHASE_STRIP = YES; 368 | ENABLE_NS_ASSERTIONS = NO; 369 | ENABLE_STRICT_OBJC_MSGSEND = YES; 370 | GCC_C_LANGUAGE_STANDARD = gnu99; 371 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 372 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 373 | GCC_WARN_UNDECLARED_SELECTOR = YES; 374 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 375 | GCC_WARN_UNUSED_FUNCTION = YES; 376 | GCC_WARN_UNUSED_VARIABLE = YES; 377 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 378 | METAL_ENABLE_DEBUG_INFO = NO; 379 | SDKROOT = iphoneos; 380 | VALIDATE_PRODUCT = YES; 381 | }; 382 | name = Release; 383 | }; 384 | AAC02B30193DEEFE003997F3 /* Debug */ = { 385 | isa = XCBuildConfiguration; 386 | baseConfigurationReference = E885CC41F32F4E3AA56367A0 /* Pods.xcconfig */; 387 | buildSettings = { 388 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 389 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 390 | CLANG_ENABLE_MODULES = YES; 391 | INFOPLIST_FILE = RSSReader/Info.plist; 392 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 393 | PRODUCT_NAME = "$(TARGET_NAME)"; 394 | SWIFT_OBJC_BRIDGING_HEADER = "RSSReader/RSSReader-Bridging-Header.h"; 395 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 396 | }; 397 | name = Debug; 398 | }; 399 | AAC02B31193DEEFE003997F3 /* Release */ = { 400 | isa = XCBuildConfiguration; 401 | baseConfigurationReference = E885CC41F32F4E3AA56367A0 /* Pods.xcconfig */; 402 | buildSettings = { 403 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 404 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 405 | CLANG_ENABLE_MODULES = YES; 406 | INFOPLIST_FILE = RSSReader/Info.plist; 407 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 408 | PRODUCT_NAME = "$(TARGET_NAME)"; 409 | SWIFT_OBJC_BRIDGING_HEADER = "RSSReader/RSSReader-Bridging-Header.h"; 410 | }; 411 | name = Release; 412 | }; 413 | AAC02B33193DEEFE003997F3 /* Debug */ = { 414 | isa = XCBuildConfiguration; 415 | buildSettings = { 416 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/RSSReader.app/RSSReader"; 417 | FRAMEWORK_SEARCH_PATHS = ( 418 | "$(SDKROOT)/Developer/Library/Frameworks", 419 | "$(inherited)", 420 | ); 421 | GCC_PREPROCESSOR_DEFINITIONS = ( 422 | "DEBUG=1", 423 | "$(inherited)", 424 | ); 425 | INFOPLIST_FILE = RSSReaderTests/Info.plist; 426 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 427 | METAL_ENABLE_DEBUG_INFO = YES; 428 | PRODUCT_NAME = "$(TARGET_NAME)"; 429 | TEST_HOST = "$(BUNDLE_LOADER)"; 430 | }; 431 | name = Debug; 432 | }; 433 | AAC02B34193DEEFE003997F3 /* Release */ = { 434 | isa = XCBuildConfiguration; 435 | buildSettings = { 436 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/RSSReader.app/RSSReader"; 437 | FRAMEWORK_SEARCH_PATHS = ( 438 | "$(SDKROOT)/Developer/Library/Frameworks", 439 | "$(inherited)", 440 | ); 441 | INFOPLIST_FILE = RSSReaderTests/Info.plist; 442 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 443 | METAL_ENABLE_DEBUG_INFO = NO; 444 | PRODUCT_NAME = "$(TARGET_NAME)"; 445 | TEST_HOST = "$(BUNDLE_LOADER)"; 446 | }; 447 | name = Release; 448 | }; 449 | /* End XCBuildConfiguration section */ 450 | 451 | /* Begin XCConfigurationList section */ 452 | AAC02B0E193DEEFE003997F3 /* Build configuration list for PBXProject "RSSReader" */ = { 453 | isa = XCConfigurationList; 454 | buildConfigurations = ( 455 | AAC02B2D193DEEFE003997F3 /* Debug */, 456 | AAC02B2E193DEEFE003997F3 /* Release */, 457 | ); 458 | defaultConfigurationIsVisible = 0; 459 | defaultConfigurationName = Release; 460 | }; 461 | AAC02B2F193DEEFE003997F3 /* Build configuration list for PBXNativeTarget "RSSReader" */ = { 462 | isa = XCConfigurationList; 463 | buildConfigurations = ( 464 | AAC02B30193DEEFE003997F3 /* Debug */, 465 | AAC02B31193DEEFE003997F3 /* Release */, 466 | ); 467 | defaultConfigurationIsVisible = 0; 468 | defaultConfigurationName = Release; 469 | }; 470 | AAC02B32193DEEFE003997F3 /* Build configuration list for PBXNativeTarget "RSSReaderTests" */ = { 471 | isa = XCConfigurationList; 472 | buildConfigurations = ( 473 | AAC02B33193DEEFE003997F3 /* Debug */, 474 | AAC02B34193DEEFE003997F3 /* Release */, 475 | ); 476 | defaultConfigurationIsVisible = 0; 477 | defaultConfigurationName = Release; 478 | }; 479 | /* End XCConfigurationList section */ 480 | }; 481 | rootObject = AAC02B0B193DEEFE003997F3 /* Project object */; 482 | } 483 | -------------------------------------------------------------------------------- /RSSReader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RSSReader.xcodeproj/project.xcworkspace/xcuserdata/susieyy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/swift-rss-sample/846af5cf0676113753c7ee17184fdf68bf08e7a9/RSSReader.xcodeproj/project.xcworkspace/xcuserdata/susieyy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RSSReader.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RSSReader.xcworkspace/xcshareddata/RSSReader.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | E800942E-402F-4C5E-8E22-99B1590ADA24 9 | IDESourceControlProjectName 10 | RSSReader 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 7B007683-1A9F-4419-A960-2C0E408BADDF 14 | ssh://github.com/susieyy/RSSReaderSwift.git 15 | 16 | IDESourceControlProjectPath 17 | RSSReader.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 7B007683-1A9F-4419-A960-2C0E408BADDF 21 | .. 22 | 23 | IDESourceControlProjectURL 24 | ssh://github.com/susieyy/RSSReaderSwift.git 25 | IDESourceControlProjectVersion 26 | 110 27 | IDESourceControlProjectWCCIdentifier 28 | 7B007683-1A9F-4419-A960-2C0E408BADDF 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 7B007683-1A9F-4419-A960-2C0E408BADDF 36 | IDESourceControlWCCName 37 | RSSReaderSwift 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /RSSReader/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // RSSReader 4 | // 5 | // Created by susieyy on 2014/06/03. 6 | // Copyright (c) 2014年 susieyy. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { 18 | // Override point for customization after application launch. 19 | 20 | return true 21 | } 22 | 23 | func applicationWillResignActive(application: UIApplication) { 24 | // 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. 25 | // 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. 26 | } 27 | 28 | func applicationDidEnterBackground(application: UIApplication) { 29 | // 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. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | func applicationWillEnterForeground(application: UIApplication) { 34 | // 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. 35 | } 36 | 37 | func applicationDidBecomeActive(application: UIApplication) { 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 | func applicationWillTerminate(application: UIApplication) { 42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | } 44 | 45 | 46 | } 47 | 48 | -------------------------------------------------------------------------------- /RSSReader/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /RSSReader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /RSSReader/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.png", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "extent" : "full-screen", 13 | "idiom" : "iphone", 14 | "subtype" : "retina4", 15 | "filename" : "launchimage4inch.png", 16 | "minimum-system-version" : "7.0", 17 | "orientation" : "portrait", 18 | "scale" : "2x" 19 | } 20 | ], 21 | "info" : { 22 | "version" : 1, 23 | "author" : "xcode" 24 | } 25 | } -------------------------------------------------------------------------------- /RSSReader/Images.xcassets/LaunchImage.launchimage/launchimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/swift-rss-sample/846af5cf0676113753c7ee17184fdf68bf08e7a9/RSSReader/Images.xcassets/LaunchImage.launchimage/launchimage.png -------------------------------------------------------------------------------- /RSSReader/Images.xcassets/LaunchImage.launchimage/launchimage4inch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/swift-rss-sample/846af5cf0676113753c7ee17184fdf68bf08e7a9/RSSReader/Images.xcassets/LaunchImage.launchimage/launchimage4inch.png -------------------------------------------------------------------------------- /RSSReader/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | jp.susiea.rssreader.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /RSSReader/RSSReader-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 "SVProgressHUD.h" 6 | #import "MWFeedParser.h" 7 | #import 8 | #import 9 | -------------------------------------------------------------------------------- /RSSReader/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // RSSReader 4 | // 5 | // Created by susieyy on 2014/06/03. 6 | // Copyright (c) 2014年 susieyy. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UITableViewController, MWFeedParserDelegate { 12 | 13 | var items = [MWFeedItem]() 14 | 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | // Do any additional setup after loading the view, typically from a nib. 18 | } 19 | 20 | override func viewWillAppear(animated: Bool) { 21 | super.viewWillAppear(animated) 22 | request() 23 | } 24 | 25 | override func didReceiveMemoryWarning() { 26 | super.didReceiveMemoryWarning() 27 | // Dispose of any resources that can be recreated. 28 | } 29 | 30 | func request() { 31 | let URL = NSURL(string: "https://www.wantedly.com/projects.xml") 32 | let feedParser = MWFeedParser(feedURL: URL); 33 | feedParser.delegate = self 34 | feedParser.parse() 35 | } 36 | 37 | func feedParserDidStart(parser: MWFeedParser) { 38 | SVProgressHUD.show() 39 | self.items = [MWFeedItem]() 40 | } 41 | 42 | func feedParserDidFinish(parser: MWFeedParser) { 43 | SVProgressHUD.dismiss() 44 | self.tableView.reloadData() 45 | } 46 | 47 | 48 | func feedParser(parser: MWFeedParser, didParseFeedInfo info: MWFeedInfo) { 49 | println(info) 50 | self.title = info.title 51 | } 52 | 53 | func feedParser(parser: MWFeedParser, didParseFeedItem item: MWFeedItem) { 54 | println(item) 55 | self.items.append(item) 56 | } 57 | 58 | override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { 59 | return 100 60 | } 61 | 62 | override func numberOfSectionsInTableView(tableView: UITableView) -> Int { 63 | return 1 64 | } 65 | 66 | override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 67 | return self.items.count 68 | } 69 | 70 | override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 71 | let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "FeedCell") 72 | self.configureCell(cell, atIndexPath: indexPath) 73 | return cell 74 | } 75 | 76 | override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { 77 | let item = self.items[indexPath.row] as MWFeedItem 78 | let con = KINWebBrowserViewController() 79 | let URL = NSURL(string: item.link) 80 | con.loadURL(URL) 81 | self.navigationController?.pushViewController(con, animated: true) 82 | } 83 | 84 | func configureCell(cell: UITableViewCell, atIndexPath indexPath: NSIndexPath) { 85 | let item = self.items[indexPath.row] as MWFeedItem 86 | cell.textLabel?.text = item.title 87 | cell.textLabel?.font = UIFont.systemFontOfSize(14.0) 88 | cell.textLabel?.numberOfLines = 0 89 | 90 | let projectURL = item.link.componentsSeparatedByString("?")[0] 91 | let imgURL: NSURL? = NSURL(string: projectURL + "/cover_image?style=200x200#") 92 | cell.imageView?.contentMode = UIViewContentMode.ScaleAspectFit 93 | cell.imageView?.setImageWithURL(imgURL, placeholderImage: UIImage(named: "logo.png")) 94 | } 95 | 96 | } 97 | 98 | -------------------------------------------------------------------------------- /RSSReader/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/swift-rss-sample/846af5cf0676113753c7ee17184fdf68bf08e7a9/RSSReader/logo.png -------------------------------------------------------------------------------- /RSSReaderTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | jp.susiea.rssreader.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /RSSReaderTests/RSSReaderTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RSSReaderTests.swift 3 | // RSSReaderTests 4 | // 5 | // Created by susieyy on 2014/06/03. 6 | // Copyright (c) 2014年 susieyy. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class RSSReaderTests: XCTestCase { 12 | 13 | override func setUp() { 14 | super.setUp() 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | super.tearDown() 21 | } 22 | 23 | func testExample() { 24 | // This is an example of a functional test case. 25 | XCTAssert(true, "Pass") 26 | } 27 | 28 | func testPerformanceExample() { 29 | // This is an example of a performance test case. 30 | self.measureBlock() { 31 | // Put the code you want to measure the time of here. 32 | } 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /movie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/swift-rss-sample/846af5cf0676113753c7ee17184fdf68bf08e7a9/movie.gif -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/swift-rss-sample/846af5cf0676113753c7ee17184fdf68bf08e7a9/screenshot.png --------------------------------------------------------------------------------