Repository: incubator-weex Updated Branches: refs/heads/release-0.16 5e85cea99 -> 31eb130dc
* [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/31eb130d Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/31eb130d Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/31eb130d Branch: refs/heads/release-0.16 Commit: 31eb130dc36d78a5f515be481b502c971b9fbeb8 Parents: 3589859 Author: acton393 <[email protected]> Authored: Mon Oct 9 19:46:20 2017 +0800 Committer: gurisxie <[email protected]> Committed: Mon Oct 9 19:53:06 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/31eb130d/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; }
