From ff84738e03b25d660285eeebf7e45803ed60a449 Mon Sep 17 00:00:00 2001 From: "pengfei.zhou" Date: Tue, 3 Mar 2020 11:58:35 +0800 Subject: [PATCH] iOS:do not show scroller indicator --- doric-iOS/Pod/Classes/Shader/DoricScrollerNode.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doric-iOS/Pod/Classes/Shader/DoricScrollerNode.m b/doric-iOS/Pod/Classes/Shader/DoricScrollerNode.m index 23b307dd..ceb20898 100644 --- a/doric-iOS/Pod/Classes/Shader/DoricScrollerNode.m +++ b/doric-iOS/Pod/Classes/Shader/DoricScrollerNode.m @@ -56,6 +56,8 @@ @implementation DoricScrollerNode - (DoricScrollView *)build { return [[DoricScrollView new] also:^(DoricScrollView *it) { it.delegate = self; + it.showsHorizontalScrollIndicator = NO; + it.showsVerticalScrollIndicator = NO; if (@available(iOS 11, *)) { it.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; }