We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 291b7b0 commit 6bfab67Copy full SHA for 6bfab67
DianXiaoEr-Menu-iOS/ViewControllers/DXEOpenViewController.m
@@ -53,6 +53,8 @@ - (void)viewWillDisappear:(BOOL)animated
53
- (void)enterMainPage
54
{
55
[UIView animateWithDuration:0.3
56
+ delay:0.3
57
+ options:0
58
animations:^{
59
self.view.alpha = 0.0;
60
}
@@ -85,9 +87,7 @@ - (IBAction)onEnterButtonClicked:(id)sender
85
87
coverOption:CRModalOptionCoverDark
86
88
tapOutsideToDismiss:NO
89
animated:YES
- completion:^{
- [self enterMainPage];
90
- }];
+ completion:nil];
91
92
93
- (IBAction)onChoosingTableButtonClicked:(id)sender
@@ -100,6 +100,7 @@ - (IBAction)onChoosingTableButtonClicked:(id)sender
100
- (void)onLoginButtonClickedInLoginView:(DXELoginView *)loginView
101
102
[CRModal dismiss];
103
+ [self enterMainPage];
104
105
106
@end
0 commit comments