├── .gitignore ├── LICENSE ├── PM25.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── scott.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── scott.xcuserdatad │ └── xcschemes │ ├── PM25.xcscheme │ └── xcschememanagement.plist ├── PM25.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── scott.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── PM25 ├── AppDelegate.swift ├── Assets.xcassets │ ├── notification-error.imageset │ │ ├── Contents.json │ │ ├── notification-error.png │ │ └── notification-error@2x.png │ ├── notification-info.imageset │ │ ├── Contents.json │ │ ├── notification-info.png │ │ └── notification-info@2x.png │ ├── notification-notice.imageset │ │ ├── Contents.json │ │ ├── notification-notice.png │ │ └── notification-notice@2x.png │ ├── notification-success.imageset │ │ ├── Contents.json │ │ ├── notification-success.png │ │ └── notification-success@2x.png │ └── notification-warning.imageset │ │ ├── Contents.json │ │ ├── notification-warning.png │ │ └── notification-warning@2x.png ├── Base.lproj │ └── Main.storyboard ├── DetailsViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Info.plist ├── PM25-Bridging-Header.h ├── SCLAlertView.swift ├── TFHpple.h ├── TFHpple.m ├── TFHppleElement.h ├── TFHppleElement.m ├── ViewController.swift ├── XPathQuery.h └── XPathQuery.m ├── PM25Tests ├── Info.plist └── PM25Tests.swift ├── Podfile ├── README.md └── Screenshots ├── 8591D37E-9CCF-4C38-B045-E15923C63E3B.png ├── A0433F3C-12FE-4A04-9AF0-0B71C5821850.png └── C451D5B8-50F9-4A53-A2C0-92D99E048299.png /.gitignore: -------------------------------------------------------------------------------- 1 | podfile.lock 2 | Pods 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/LICENSE -------------------------------------------------------------------------------- /PM25.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PM25.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PM25.xcodeproj/project.xcworkspace/xcuserdata/scott.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcodeproj/project.xcworkspace/xcuserdata/scott.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PM25.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/PM25.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/PM25.xcscheme -------------------------------------------------------------------------------- /PM25.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PM25.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PM25.xcworkspace/xcuserdata/scott.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25.xcworkspace/xcuserdata/scott.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PM25/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/AppDelegate.swift -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-error.imageset/Contents.json -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-error.imageset/notification-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-error.imageset/notification-error.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-error.imageset/notification-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-error.imageset/notification-error@2x.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-info.imageset/Contents.json -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-info.imageset/notification-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-info.imageset/notification-info.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-info.imageset/notification-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-info.imageset/notification-info@2x.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-notice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-notice.imageset/Contents.json -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-notice.imageset/notification-notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-notice.imageset/notification-notice.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-notice.imageset/notification-notice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-notice.imageset/notification-notice@2x.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-success.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-success.imageset/Contents.json -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-success.imageset/notification-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-success.imageset/notification-success.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-success.imageset/notification-success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-success.imageset/notification-success@2x.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-warning.imageset/Contents.json -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-warning.imageset/notification-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-warning.imageset/notification-warning.png -------------------------------------------------------------------------------- /PM25/Assets.xcassets/notification-warning.imageset/notification-warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Assets.xcassets/notification-warning.imageset/notification-warning@2x.png -------------------------------------------------------------------------------- /PM25/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PM25/DetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/DetailsViewController.swift -------------------------------------------------------------------------------- /PM25/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PM25/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PM25/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/Info.plist -------------------------------------------------------------------------------- /PM25/PM25-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/PM25-Bridging-Header.h -------------------------------------------------------------------------------- /PM25/SCLAlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/SCLAlertView.swift -------------------------------------------------------------------------------- /PM25/TFHpple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/TFHpple.h -------------------------------------------------------------------------------- /PM25/TFHpple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/TFHpple.m -------------------------------------------------------------------------------- /PM25/TFHppleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/TFHppleElement.h -------------------------------------------------------------------------------- /PM25/TFHppleElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/TFHppleElement.m -------------------------------------------------------------------------------- /PM25/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/ViewController.swift -------------------------------------------------------------------------------- /PM25/XPathQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/XPathQuery.h -------------------------------------------------------------------------------- /PM25/XPathQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25/XPathQuery.m -------------------------------------------------------------------------------- /PM25Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25Tests/Info.plist -------------------------------------------------------------------------------- /PM25Tests/PM25Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/PM25Tests/PM25Tests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '7.0' 2 | 3 | pod 'SVProgressHUD' -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/8591D37E-9CCF-4C38-B045-E15923C63E3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/Screenshots/8591D37E-9CCF-4C38-B045-E15923C63E3B.png -------------------------------------------------------------------------------- /Screenshots/A0433F3C-12FE-4A04-9AF0-0B71C5821850.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/Screenshots/A0433F3C-12FE-4A04-9AF0-0B71C5821850.png -------------------------------------------------------------------------------- /Screenshots/C451D5B8-50F9-4A53-A2C0-92D99E048299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v5tech/Swift-PM25/HEAD/Screenshots/C451D5B8-50F9-4A53-A2C0-92D99E048299.png --------------------------------------------------------------------------------