scroll-view组件真机iphone6s调试时,会堆叠到一起,而模拟器显示正常?
手机型号:iphone6s,系统版本:ios9.3.2,附上截图.
<scroll-view class="recommendScroll" enable-flex scroll-x scroll-y="false">
<view class="scrollItem" wx:for="{{recommendList}}" wx:key="id">
<image src="{{item.picUrl}}"></image>
<text>{{item.name}}</text>
</view>
</scroll-view>
/* 内容区域 */
.scrollItem {
width: 200rpx;
margin-right: 20rpx;
}
.recommendScroll {
display: flex;
}
.scrollItem image {
width: 200rpx;
height: 200rpx;
border-radius: 10rpx;
}
,请问怎么处理?