It looks like nothing was found at this location. Maybe try a search?
82 | 83 | 84 | 91 |├── .gitignore
├── .travis.yml
├── AppledocSettings.plist
├── Example
├── Podfile
├── Podfile.lock
├── Tests
│ ├── Info.plist
│ ├── MockData
│ │ ├── fault_rpc_call.xml
│ │ ├── html_page_with_link_to_rsd.html
│ │ ├── html_page_with_link_to_rsd_non_standard.html
│ │ ├── plugin_redirect.html
│ │ ├── redirect.html
│ │ ├── rsd.xml
│ │ └── system_list_methods.xml
│ ├── WordPressApiTests.m
│ └── WordPressXMLRPCApiTests.m
├── WordPressApiExample.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── WordPressApiExample.xccheckout
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── WordPressApiExample.xcscheme
├── WordPressApiExample.xcworkspace
│ └── contents.xcworkspacedata
└── WordPressApiExample
│ ├── AppDelegate.h
│ ├── AppDelegate.m
│ ├── ComposeViewController.h
│ ├── ComposeViewController.m
│ ├── Images.xcassets
│ ├── AppIcon.appiconset
│ │ └── Contents.json
│ └── Contents.json
│ ├── LoginViewController.h
│ ├── LoginViewController.m
│ ├── PostViewController.h
│ ├── PostViewController.m
│ ├── PostsViewController.h
│ ├── PostsViewController.m
│ ├── WordPressApiExample-Info.plist
│ ├── WordPressApiExample-Prefix.pch
│ ├── en.lproj
│ ├── InfoPlist.strings
│ ├── LaunchScreen.storyboard
│ └── MainStoryboard.storyboard
│ └── main.m
├── LICENSE.md
├── Pod
├── WPComOAuthController.h
├── WPComOAuthController.m
├── WPHTTPAuthenticationAlertController.h
├── WPHTTPAuthenticationAlertController.m
├── WPHTTPRequestOperation.h
├── WPHTTPRequestOperation.m
├── WPRSDParser.h
├── WPRSDParser.m
├── WPXMLRPCClient.h
├── WPXMLRPCClient.m
├── WPXMLRPCRequest.h
├── WPXMLRPCRequest.m
├── WPXMLRPCRequestOperation.h
├── WPXMLRPCRequestOperation.m
├── WordPressApi-Prefix.pch
├── WordPressApi.h
├── WordPressApi.m
├── WordPressBaseApi.h
├── WordPressRestApi.h
├── WordPressRestApi.m
├── WordPressRestApiJSONRequestOperation.h
├── WordPressRestApiJSONRequestOperation.m
├── WordPressRestApiJSONRequestOperationManager.h
├── WordPressRestApiJSONRequestOperationManager.m
├── WordPressXMLRPCApi.h
└── WordPressXMLRPCApi.m
├── README.md
└── WordPressApi.podspec
/.gitignore:
--------------------------------------------------------------------------------
1 | # Xcode
2 | .DS_Store
3 | */build/*
4 | *.pbxuser
5 | !default.pbxuser
6 | *.mode1v3
7 | !default.mode1v3
8 | *.mode2v3
9 | !default.mode2v3
10 | *.perspectivev3
11 | !default.perspectivev3
12 | xcuserdata
13 | profile
14 | *.moved-aside
15 | DerivedData
16 | .idea/
17 | *.hmap
18 | Pods/
19 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | install:
2 | - gem install cocoapods -v 1.0.0
3 | osx_image: xcode7.1
4 | sudo: false
5 | language: objective-c
6 | podfile: Example/Podfile
7 | before_script:
8 | - cd Example && pod install && cd -
9 | script:
10 | - set -o pipefail && xcodebuild test -workspace Example/WordPressApiExample.xcworkspace -scheme WordPressApiExample -sdk iphonesimulator | xcpretty -c
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/AppledocSettings.plist:
--------------------------------------------------------------------------------
1 |
2 |
4 |
A site to test iOS app interface.
64 |It looks like nothing was found at this location. Maybe try a search?
82 | 83 | 84 | 91 |A site to test iOS app interface.
64 |It looks like nothing was found at this location. Maybe try a search?
82 | 83 | 84 | 91 |