eliperkins / CMDQueryStringSerialization

Easy query string conversion for iOS and OS X.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMDQueryStringSerialization

Pod Version Pod Platform Pod License

Easily convert between dictionaries and query strings in iOS and OS X. The API is similar to NSJSONSerialization.

Usage

NSString *queryString = [CMDQueryStringSerialization queryStringWithDictionary:dictionary];

CMDQueryStringSerialization supports arrays encoded in one of the following three formats:

  • key=value1&key=value2
  • key[]=value1&key[]=value2
  • key=value1,value2

CMDQueryStringWritingOptions contains options that map to each of these formats, with CMDQueryStringWritingOptionArrayRepeatKeysWithBrackets being the default if no option is passed.

License

CMDQueryStringSerialization is released under the MIT License.

About

Easy query string conversion for iOS and OS X.

License:MIT License


Languages

Language:Objective-C 97.2%Language:Ruby 2.8%