-
-
Save CavalcanteLeo/b5c9fffb9bd754e2b097 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import "Image.h" | |
@interface ImageHelper : NSObject{ | |
@private | |
Image *image; | |
} | |
- (UIImage *)getThumbnailImage; | |
- (UIImage *)getFullScreenImage; | |
- (UIImage *)getOriginalImage; | |
- (NSString *)getImageDirectory; | |
- (NSString *)getThumbnailImagePath; | |
- (NSString *)getFullScreenImagePath; | |
- (NSString *)getOriginalImagePath; | |
+ (NSArray *)helpersFromArray:(NSArray *)images; | |
+ (NSArray *)helpersFromEntry:(Entry *)entry withObjectContext:(NSManagedObjectContext *)managedObjectContext; | |
@property(nonatomic, retain) Image *image; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment