未验证 提交 2581226c 编写于 作者: Y yinhaichao 提交者: GitHub

Merge pull request #765 from ianisme/master

feat:修复导航栏可能导致的安全区域问题
......@@ -44,7 +44,13 @@
}
break;
default:
screen = screen;
{
UIEdgeInsets safeAreaInsets = [self safeAreaInset];
CGRect frame = screen;
frame.origin.y = safeAreaInsets.top;
frame.size.height = self.view.doraemon_height - safeAreaInsets.top;
screen = frame;
}
break;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册