12345678910111213141516171819202122 |
- //
- // LoadingView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/11/1.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LoadingView : NSObject
- + (void)show;
- + (void)showInView:(UIView *)superView;
- + (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|