Latest | 0.0.1 |
---|---|
Homepage | https://github.com/offtza/WSURLBuilder |
License | MIT |
Platforms | ios 7.0, requires ARC |
Authors |
Usage
To run the example project, clone the repo, and run pod install
from the Example directory first.
To use the library, include WSURLBuilder header:
#import "WSURLBuilder.h"
and start building the url:
NSURL *url = [[[[[WSURLBuilder builderWithScheme:@"http"]
withHost:@"google.com"]
withPath:@"search"]
withQueryParam:@"q" value:@"WSURLBuilder"]
build];
Installation
WSURLBuilder is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod "WSURLBuilder"
Author
Marcin Lukow, [email protected]
License
WSURLBuilder is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "WSURLBuilder", "version": "0.0.1", "summary": "URL builder for Objective-C.", "homepage": "https://github.com/offtza/WSURLBuilder", "license": "MIT", "authors": { "Marcin Lukow": "[email protected]" }, "source": { "git": "https://github.com/offtza/WSURLBuilder.git", "tag": "0.0.1" }, "social_media_url": "https://twitter.com/MarcinLukow", "platforms": { "ios": "7.0" }, "requires_arc": true, "source_files": "Pod/Classes/**/*", "public_header_files": "Pod/Classes/WS*.h" }
Sat, 05 Mar 2016 23:36:03 +0000