Przeglądaj źródła

公开了maskView属性

zzb 4 lat temu
rodzic
commit
37f32c26f1

+ 2 - 0
ZZUIKit/Classes/ZZDialog/ZZDialogViewController.h

@@ -7,6 +7,7 @@
 
 #import <ZZUIKit/ZZViewController.h>
 #import "ZZDialog.h"
+#import "ZZMaskView.h"
 
 NS_ASSUME_NONNULL_BEGIN
 
@@ -17,6 +18,7 @@ NS_ASSUME_NONNULL_BEGIN
 
 @interface ZZDialogViewController : ZZViewController
 @property(nonatomic,strong,readonly) ZZDialog *dialog;
+@property(nonatomic,strong) ZZMaskView *maskView;
 @property(nonatomic,weak,nullable) id<ZZDialogDelegate> dialogDelegate;
 @property(nonatomic,weak,nullable) id<ZZDialogHandleDelegate> handleDelegate;
 

+ 2 - 2
ZZUIKit/Classes/ZZDialog/ZZDialogViewController.m

@@ -7,11 +7,11 @@
 
 #import "ZZDialogViewController.h"
 #import "ZZUIKitEx.h"
-#import "ZZMaskView.h"
+
 
 @interface ZZDialogViewController ()
 @property(nonatomic,strong,readwrite) ZZDialog *dialog;
-@property(nonatomic,strong) ZZMaskView *maskView;
+
 @end
 
 @implementation ZZDialogViewController