| 123456789101112131415161718192021 |
- //
- // BogoNoNetworkView.h
- // BuguLive
- //
- // Created by 宋晨光 on 2021/3/26.
- // Copyright © 2021 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BogoNoNetworkView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *resetBtn;
- @property(nonatomic, copy) void (^clickResetBlock)();
- @end
- NS_ASSUME_NONNULL_END
|