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
/* | |
This gist is a code sample for the stackoverflow question | |
http://stackoverflow.com/questions/30062124/wkinterfacedevice-caching-optimization | |
The purpose of the question is to find a way to reduce the size of an animated image in the watch cache. | |
The interface only has the image in it. | |
*/ |
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
// this is an answer for SO question http://stackoverflow.com/q/21859288/1449607 | |
@interface TableViewController : UITableViewController | |
@end | |
@interface TableViewController () | |
@property (nonatomic, strong) NSMutableArray* books; | |
@property (nonatomic, strong) NSString* path; | |
@end |