turntableView.h 469 B

123456789101112131415161718192021222324
  1. //
  2. // turntableView.h
  3. // yunbaolive
  4. //
  5. // Created by IOS1 on 2019/6/5.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol turntableViewDelegate <NSObject>
  11. - (void)turntableZhongjianla;
  12. @end
  13. @interface turntableView : UIView<CAAnimationDelegate>
  14. - (void)show;
  15. @property (nonatomic,strong) NSDictionary *zhuboMsg;
  16. @property (nonatomic,weak) id<turntableViewDelegate> delegate;
  17. @end
  18. NS_ASSUME_NONNULL_END