Fix merge conflicts

This commit is contained in:
Aaron Schubert
2016-04-21 09:26:40 +01:00
37 changed files with 454 additions and 369 deletions

View File

@@ -8,6 +8,8 @@
#import <AsyncDisplayKit/ASControlNode.h>
#import "ASImageProtocols.h"
NS_ASSUME_NONNULL_BEGIN
/**
@@ -119,6 +121,22 @@ typedef UIImage * _Nullable (^asimagenode_modification_block_t)(UIImage *image);
@property (nonatomic, assign) BOOL isDefaultFocusAppearance;
#endif
/**
* @abstract The animated image to playback
*
* @discussion Set this to an object which conforms to ASAnimatedImageProtocol
* to have the ASImageNode playback an animated image.
*/
@property (nullable, atomic, strong) id <ASAnimatedImageProtocol> animatedImage;
/**
* @abstract Pause the playback of an animated image.
*
* @discussion Set to YES to pause playback of an animated image and NO to resume
* playback.
*/
@property (atomic, assign) BOOL animatedImagePaused;
@end