https://github.com/materik/cocoapod-querystring
Model for parsing and appending query strings to URLs.
https://github.com/materik/cocoapod-querystring
cocoapods querystring swift url
Last synced: 11 months ago
JSON representation
Model for parsing and appending query strings to URLs.
- Host: GitHub
- URL: https://github.com/materik/cocoapod-querystring
- Owner: materik
- License: mit
- Created: 2017-02-08T17:57:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-09-19T07:40:21.000Z (over 7 years ago)
- Last Synced: 2025-07-09T02:52:48.650Z (11 months ago)
- Topics: cocoapods, querystring, swift, url
- Language: Swift
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

[](http://twitter.com/thematerik)
[](https://cocoapods.org/pods/QueryString)
[](https://travis-ci.org/materik/cocoapod-querystring)


Model for parsing and appending query strings to URLs.
# Install
```bash
pod 'QueryString'
```
# Usage
```swift
let qs = QueryString(key: "query", value: "stockholm")
let url = qs.append(to: "http://google.com")
print(url) // http://google.com?query=stockholm
```