22 lines
284 B
C
22 lines
284 B
C
|
|
//
|
||
|
|
// FLImageView.h
|
||
|
|
// SoundRiver
|
||
|
|
//
|
||
|
|
// Created by ln007 on 2019/4/27.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface FLImageView : UIImageView {
|
||
|
|
CABasicAnimation *_rotateAnimation;
|
||
|
|
}
|
||
|
|
|
||
|
|
- (void)startRotating;
|
||
|
|
- (void)stopRotating;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|