Adding explicit cast for associated image request operation object in UIImageView category

This commit is contained in:
Mattt Thompson 2011-08-03 13:02:47 -05:00
parent d4e34f76bf
commit 9a2b90c698

View file

@ -42,7 +42,7 @@ static NSString * const kUIImageViewImageRequestObjectKey = @"imageRequestOperat
@implementation UIImageView (AFNetworking)
- (AFHTTPRequestOperation *)imageRequestOperation {
return objc_getAssociatedObject(self, kUIImageViewImageRequestObjectKey);
return (AFHTTPRequestOperation *)objc_getAssociatedObject(self, kUIImageViewImageRequestObjectKey);
}
- (void)setImageRequestOperation:(AFImageRequestOperation *)imageRequestOperation {