瀏覽代碼

1.修改iOS Apex Drivers登出后界面不响应交互事件。

Pen Li 7 年之前
父節點
當前提交
dc3e8d8d0f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Redant Drivers/Apex And Drivers/RAProgressHUD.m

+ 1 - 1
Redant Drivers/Apex And Drivers/RAProgressHUD.m

@@ -109,10 +109,10 @@ static const CGFloat HUDSIZE = 100.0f;
 
 - (void)dismiss:(void(^)(void))completion {
     
+    self.window.userInteractionEnabled = YES;
     [UIView animateWithDuration:0.25 animations:^{
         self.alpha = 0.3;
     } completion:^(BOOL finished) {
-        self.window.userInteractionEnabled = YES;
         [self removeFromSuperview];
         if (completion) {
             completion();