Fix [Issue #751]
This commit is contained in:
parent
eac6ffbb6e
commit
d998515d24
1 changed files with 8 additions and 1 deletions
|
|
@ -75,7 +75,14 @@
|
||||||
- A copy of an operation will not include the `outputStream` of the original.
|
- A copy of an operation will not include the `outputStream` of the original.
|
||||||
- Operation copies do not include `completionBlock`. `completionBlock` often strongly captures a reference to `self`, which would otherwise have the unintuitive side-effect of pointing to the _original_ operation when copied.
|
- Operation copies do not include `completionBlock`. `completionBlock` often strongly captures a reference to `self`, which would otherwise have the unintuitive side-effect of pointing to the _original_ operation when copied.
|
||||||
*/
|
*/
|
||||||
@interface AFURLConnectionOperation : NSOperation <NSURLConnectionDelegate, NSCoding, NSCopying>
|
@interface AFURLConnectionOperation : NSOperation <NSURLConnectionDelegate,
|
||||||
|
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_5_0
|
||||||
|
NSURLConnectionDataDelegate,
|
||||||
|
#endif
|
||||||
|
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_8
|
||||||
|
NSURLConnectionDataDelegate,
|
||||||
|
#endif
|
||||||
|
NSCoding, NSCopying>
|
||||||
|
|
||||||
///-------------------------------
|
///-------------------------------
|
||||||
/// @name Accessing Run Loop Modes
|
/// @name Accessing Run Loop Modes
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue