Allow configuration of ASImageNode's animation runloop

This commit is contained in:
Eric Jensen
2016-06-08 10:38:43 -07:00
parent cb67671f1d
commit 370e5f1006
4 changed files with 27 additions and 1 deletions

View File

@@ -141,6 +141,13 @@ typedef UIImage * _Nullable (^asimagenode_modification_block_t)(UIImage *image);
*/
@property (atomic, assign) BOOL animatedImagePaused;
/**
* @abstract The runloop mode used to animte th image.
*
* @discussion Defaults to NSDefaultRunLoopMode. Another commonly used mode is NSRunLoopCommonModes.
*/
@property (atomic, strong) NSString *animatedImageRunLoopMode;
@end