| 12345678910111213141516171819 |
- //
- // GDYLimitAlert.h
- // iphoneLive
- //
- // Created by YB007 on 2022/4/9.
- // Copyright © 2022 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^LimitBlock)(void);
- @interface GDYLimitAlert : UIView
- +(instancetype)showLimitWithDic:(NSDictionary *)limitDic complete:(LimitBlock)complete;
- @end
|