Browse Source

修复自动刷新控件 AutoFooter及其子类 设置忽略距离 ignoredScrollViewContentInsetBottom 无效的问题 (#852)

Frank 6 năm trước cách đây
mục cha
commit
f2bcb661e6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      MJRefresh/Base/MJRefreshAutoFooter.m

+ 1 - 1
MJRefresh/Base/MJRefreshAutoFooter.m

@@ -65,7 +65,7 @@ - (void)scrollViewContentSizeDidChange:(NSDictionary *)change
     [super scrollViewContentSizeDidChange:change];
     
     // 设置位置
-    self.mj_y = self.scrollView.mj_contentH;
+    self.mj_y = self.scrollView.mj_contentH + self.ignoredScrollViewContentInsetBottom;
 }
 
 - (void)scrollViewContentOffsetDidChange:(NSDictionary *)change