1234567891011121314151617181920212223242526272829303132333435363738 |
- #import "OCHTTPRequestOperation.h"
- @interface OCHTTPRequestOperation ()
- @property (readwrite, nonatomic, strong) NSMutableURLRequest *request;
- @end
- @implementation OCHTTPRequestOperation
- @synthesize request;
- @end
|