封装图片轮播图,支持定时轮播,点击交互,添加其他控件等功能
传入图片类型支持本地图片名称(NSString)、网络图片地址(NSString)和本地图片(UIImage) 占位图类型支持本地图片名称(NSString)和本地图片(UIImage)
- (void)addImageNames:(NSArray *)imageNames placeholder:(id)placeholder;- (void)addView:(UIView *)view imageNum:(NSInteger)imageNum frame:(CGRect)frame;
@property (nonatomic, assign) BOOL isAutoScroll;
@property (nonatomic, assign) NSInteger scrollTime;
@property (nonatomic, strong) UIColor *pageCurrentColor;
@property (nonatomic, strong) UIColor *pageOtherColor;
@property (nonatomic, copy) UIImage *pageCurrentImage;
@property (nonatomic, copy) UIImage *pageOtherImage;
@property (nonatomic, assign) CGRect pageControlFrame;
- (void)pageView:(MYPageView *)pageView didSelectNum:(NSInteger)num;