//// RCAnimatedImagesView.h// RCloudMessage//// Created by 杜立召 on 15/3/18.// Copyright (c) 2015年 RongCloud. All rights reserved.//#import <UIKit/UIKit.h>#define kJSAnimatedImagesViewDefaultTimePerImage 20.0f@protocolRCAnimatedImagesViewDelegate;@interfaceRCAnimatedImagesView:UIView@property(nonatomic,assign)id<RCAnimatedImagesViewDelegate>delegate;@property(nonatomic,assign)NSTimeIntervaltimePerImage;-(void)startAnimating;-(void)stopAnimating;-(void)reloadData;@end@protocolRCAnimatedImagesViewDelegate//返回执行的次数-(NSUInteger)animatedImagesNumberOfImages:(RCAnimatedImagesView*)animatedImagesView;//返回显示的图片对象-(UIImage*)animatedImagesView:(RCAnimatedImagesView*)animatedImagesViewimageAtIndex:(NSUInteger)index;@end