我在tableview上搜索了减速率的行为,但我没有找到任何好的信息,所以我用自己的价值玩弄了自己。
我从文档中尝试了常量UIScrollViewDecelerationRateNormal UIScrollViewDecelerationRateFast,但在我的情况下这太快了。
我希望减速值非常慢,但我没有成功。
提供<它减速很快。 提供10000.它减速慢,但对我来说仍然减速到快。我能提供的最慢减速值是多少?或者可能的范围是什么?
self.easyTableView.tableView.decelerationRate = 100000;//UIScrollViewDecelerationRateNormal UIScrollViewDecelerationRateFast
答案 0 :(得分:1)
decelerationRate是float类型的Scroll View属性,你没有多少选项,只有2个模式,如doc
中所述@property(nonatomic) CGFloat decelerationRate
<强> 讨论 强> 您的应用程序可以使用UIScrollViewDecelerationRateNormal和UIScrollViewDecelerationRateFast常量作为合理减速率的参考点。