Making the assign attribute on properties explicit to suppress warnings on iOS 6 SDK.

This commit is contained in:
Wen-Hao Lue 2012-07-11 01:04:16 -07:00
parent 7fda89e4a2
commit 415ece4dd4

View file

@ -85,12 +85,12 @@ extern NSString * AFCreateIncompleteDownloadDirectoryPath(void);
/**
The callback dispatch queue on success. If `NULL` (default), the main queue is used.
*/
@property (nonatomic) dispatch_queue_t successCallbackQueue;
@property (nonatomic, assign) dispatch_queue_t successCallbackQueue;
/**
The callback dispatch queue on failure. If `NULL` (default), the main queue is used.
*/
@property (nonatomic) dispatch_queue_t failureCallbackQueue;
@property (nonatomic, assign) dispatch_queue_t failureCallbackQueue;
///-------------------------------------------------------------
/// @name Managing Accceptable HTTP Status Codes & Content Types