WordPress-Editor-iOS-Extension icon indicating copy to clipboard operation
WordPress-Editor-iOS-Extension copied to clipboard

iOS 11 获取焦点后滚动到不可见区域

Open LBingRun opened this issue 7 years ago • 2 comments

LBingRun avatar Dec 20 '17 09:12 LBingRun

同,应该没维护了

mrZombie2016 avatar Jan 04 '19 08:01 mrZombie2016

不过可以改一下:在WPViewController.m里加一句:

self.automaticallyAdjustsScrollViewInsets = NO;

WPEditorView..m里的方法里- (void)createWebViewWithFrame:(CGRect)frame加:

if (@available(iOS 11.0, *)) {
        _webView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    } else {
        // Fallback on earlier versions
    }

这样就可以解决偏移问题了

mrZombie2016 avatar Jan 04 '19 14:01 mrZombie2016