解決iOS11 UIScrollView下移問題


iOS11 系統為UIScrollView增加一個contentInsetAdjustmentBehavior屬性,默認為UIScrollViewContentInsetAdjustmentAutomatic,要想和iOS11之前顯示效果一樣的話,只需要寫一個分類在+ (void)load方法設置一下就好了

 

#import "UIScrollView+KJExtension.h"

 

@implementation UIScrollView (KJExtension)

 

+ (void)load {

    

    NSLog(@"scrollView調用了load方法");

    

    if (@available(iOS 11.0, *)){

        [[self appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];

    }

}

@end


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM