在API内的scrollViewDidScroll中,显示发件人正确,但sender.contentSize在计算页码时显示为空
我想在由 uiimage 视图组成的滚动视图中查找页码。
在方法内部, - (void)scrollViewDidScroll:(UIScrollView *)sender
在记录时正确显示发件人值,即有关滚动器的所有内容都是正确的,
但在我使用 sender.contentOffSet.x< 时进行计算/code> 然后它显示 null
谢谢。
I want to find page number in scroll view consisting of uiimage view.
Inside the method, - (void)scrollViewDidScroll:(UIScrollView *)sender
on logging it shows sender value properly i.e everything about scroller correct,
but for calculation when i use sender.contentOffSet.x
then it shows null
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
的以下方法
尝试使用 UIScrollViewProtocol
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
。
如果 contentSize 为零,则默认值...请参阅苹果文档中的以下详细信息
Try using following method of UIScrollViewProtocol
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
Default value if contentSize is zero....see following details from apple documentation.