OC:
if(@available(iOS11.0, *)){
[[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
}
SWIFT:
if#available(iOS11.0, *) {
UIScrollView.appearance().contentInsetAdjustmentBehavior= .never
}
OC:
if(@available(iOS11.0, *)){
[[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
}
SWIFT:
if#available(iOS11.0, *) {
UIScrollView.appearance().contentInsetAdjustmentBehavior= .never
}
本文标题:scrollView 适配iOS 11
本文链接:https://www.haomeiwen.com/subject/dtukwxtx.html
网友评论