FBSDKUtility
Es ist eine neuere Version dieser Klasse verfügbar. Sieh sie dir an mit der aktuellsten Version.

Class to contain common utility methods.

Superclass:NSObject
Declared in:FBSDKUtility.h
Klassenmethoden
dictionaryWithQueryString:

Parses a query string into a dictionary.

ParameterBeschreibung
queryString

The query string value.

+ (NSDictionary *) dictionaryWithQueryString:(NSString *)queryString;
Deklariert in: FBSDKUtility.h
queryStringWithDictionary:error:

Constructs a query string from a dictionary.

ParameterBeschreibung
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 *)
queryStringWithDictionary: (NSDictionary *)dictionary
error: (NSError *__autoreleasing *)errorRef;
Deklariert in: FBSDKUtility.h
URLDecode:

Decodes a value from an URL.

ParameterBeschreibung
value

The value to decode.

+ (NSString *) URLDecode:(NSString *)value;
Deklariert in: FBSDKUtility.h
URLEncode:

Encodes a value for an URL.

ParameterBeschreibung
value

The value to encode.

+ (NSString *) URLEncode:(NSString *)value;
Deklariert in: FBSDKUtility.h