19 lines
420 B
Objective-C
Executable File
19 lines
420 B
Objective-C
Executable File
//
|
|
// wheelView.h
|
|
// 君分时代
|
|
//
|
|
// Created by 贠小飞 on 2018/4/10.
|
|
// Copyright © 2018年 贠小飞. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface wheelView : UIView
|
|
|
|
//多少秒滚动一次,默认 == 3
|
|
@property (nonatomic, assign) NSInteger seconds;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame pictures:(NSArray *)pictures;
|
|
@property(nonatomic, copy) void (^imageClickBlock)(void);
|
|
@end
|