22 lines
284 B
Objective-C
Executable File
22 lines
284 B
Objective-C
Executable File
//
|
|
// 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
|