* [ios] add more comments about category
Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/93c95f2a Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/93c95f2a Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/93c95f2a Branch: refs/heads/website Commit: 93c95f2ab96d66c71909ce6db62da3a04f10f62d Parents: a8d3afc Author: acton393 <zhangxing610...@gmail.com> Authored: Mon Oct 9 19:46:20 2017 +0800 Committer: gurisxie <279483...@qq.com> Committed: Tue Oct 10 12:11:25 2017 +0800 ---------------------------------------------------------------------- ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/93c95f2a/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.m ---------------------------------------------------------------------- diff --git a/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.m b/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.m index bf8021f..a7d042e 100644 --- a/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.m +++ b/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.m @@ -33,7 +33,6 @@ @implementation WXScrollerComponnetView @end; -// add a category compatible for new API @interface WXScrollerComponnetView(WXScrollerComponnetView_ContentInsetAdjustmentBehavior) @property(nonatomic, assign)NSUInteger contentInsetAdjustmentBehavior; @end @@ -166,7 +165,10 @@ WX_EXPORT_METHOD(@selector(resetLoadmore)) scrollView.alwaysBounceHorizontal = _alwaysScrollableHorizontal; scrollView.alwaysBounceVertical = _alwaysScrollableVertical; if (WX_SYS_VERSION_GREATER_THAN_OR_EQUAL_TO(@"11.0")) { - // now use the runtime to forbid the contentInset being Adjusted + // now use the runtime to forbid the contentInset being Adjusted. + // here we add a category for scoller component view class compatible for new API, + // as we are concerning about weexSDK build as framework by Xcode8, using in Xcode9 project, + // so the the macro __IPHONE_11_0 will be useless in this case. scrollView.contentInsetAdjustmentBehavior = 2; }