Guest User

Untitled

a guest
Apr 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. //
  2. // ImageLoadingOp.h
  3. // PersonList
  4. //
  5. // Created by Marcio Valenzuela on 10/20/09.
  6. // Copyright 2009 Personal. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10. #import <UIKit/UIKit.h>
  11.  
  12.  
  13. extern NSString *const ImageResultKey;
  14. extern NSString *const URLResultKey;
  15.  
  16. @interface ImageLoadingOp : NSOperation {
  17. NSURL *imageURL;
  18. id target;
  19. SEL action;
  20. }
  21.  
  22. - (id)initWithImageURL:(NSURL *)imageURL target:(id)target action:(SEL)action;
  23.  
  24. @end
Add Comment
Please, Sign In to add comment