Results 6 comments of 南山忆

这个方法在手势进行时是会被不停回调的,在这里reload data会造成很严重的性能问题

I have the same question. I can't breakpoint on MacOS Big Sur

我也遇到同样问题,如下解决方式 iOS 13之后如果使用了SceneDelegate,那keyWindow用原来的方法是无法更改的 self.contentWindow.hidden = NO; [self.contentWindow makeKeyAndVisible]; 也就是这段代码无效 需要更改LKS_PerspectiveManager中的window才能弹出 可以删除 self.contentWindow = [LKS_PerspectiveContainerWindow new]; 增加如下方法即可 - (LKS_PerspectiveContainerWindow *)contentWindow{ if (!_contentWindow) { if (@available(iOS 13.0, *)) { UIWindowScene * windowScene...