| 123456789101112131415161718192021222324 |
- //
- // turntableView.h
- // yunbaolive
- //
- // Created by IOS1 on 2019/6/5.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol turntableViewDelegate <NSObject>
- - (void)turntableZhongjianla;
- @end
- @interface turntableView : UIView<CAAnimationDelegate>
- - (void)show;
- @property (nonatomic,strong) NSDictionary *zhuboMsg;
- @property (nonatomic,weak) id<turntableViewDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|