|
LuxChat
2.0
Instant messenger for iOS
|
#import <FBSDKUtility.h>
Class Methods | |
| (NSDictionary *) | + dictionaryWithQueryString: |
| (NSString *) | + queryStringWithDictionary:error: |
| (NSString *) | + URLDecode: |
| (NSString *) | + URLEncode: |
Class to contain common utility methods.
| + (NSDictionary *) dictionaryWithQueryString: | (NSString *) | queryString |
Parses a query string into a dictionary.
| queryString | The query string value. |
| + (NSString *) queryStringWithDictionary: | (NSDictionary *) | dictionary | |
| error: | (NSError *__autoreleasing *) | errorRef | |
Constructs a query string from a dictionary.
| dictionary | The dictionary with key/value pairs for the query string. |
| errorRef | If an error occurs, upon return contains an NSError object that describes the problem. |
| + (NSString *) URLDecode: | (NSString *) | value |
Decodes a value from an URL.
| value | The value to decode. |
| + (NSString *) URLEncode: | (NSString *) | value |
Encodes a value for an URL.
| value | The value to encode. |
1.8.9.1