mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
15 lines
313 B
C
15 lines
313 B
C
![]() |
//
|
||
|
// UIImage+ImageNamedExtension.h
|
||
|
// InstapaperActivity
|
||
|
//
|
||
|
// http://stackoverflow.com/questions/4754551/iphone-use-external-image-in-uiimage-imagenamed
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface UIImage (ImageNamedExtension)
|
||
|
|
||
|
+ (UIImage *)imageNamed:(NSString *)name fromDirectory:(NSString *)directory;
|
||
|
|
||
|
@end
|