Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @interface Preset : NSObject
  2.  
  3. #if TARGET_OS_IPHONE
  4. @property (nonatomic, strong) UIImage *thumbnail;
  5. @property (nonatomic, strong) UIImage *customThumbnail;
  6. #else
  7. @property (nonatomic, strong) NSImage *thumbnail;
  8. @property (nonatomic, strong) NSImage *customThumbnail;
  9. #endif
  10.  
  11. @property (nonatomic, strong) NSDictionary *parms;
  12. @property (nonatomic, strong) NSString *name;
  13. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement