All Projects → azu → NSDictionaryAsURLQuery

azu / NSDictionaryAsURLQuery

Licence: MIT license
URLQueryBuilder convert NSDictionary to URL query string.

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

URLQueryBuilder Build Status

URLQueryBuilder convert NSDictionary to URL query string.

Installation

pod 'NSDictionaryAsURLQuery'

Usage

    NSString *results = [URLQueryBuilder buildQueryWithDictionary:@{
        @"param_1" : @1,
        @"param_2" : @"string"
    }];
    // => @"param_1=1&param_2=string"

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].