在API内的scrollViewDidScroll中,显示发件人正确,但sender.contentSize在计算页码时显示为空

发布于 2024-12-02 09:05:14 字数 245 浏览 0 评论 0原文

我想在由 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花间憩 2024-12-09 09:05:14

的以下方法

尝试使用 UIScrollViewProtocol
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView

如果 contentSize 为零,则默认值...请参阅苹果文档中的以下详细信息

内容偏移量
内容视图的原点相对于滚动视图的原点的偏移点。

讨论
默认值为 CGPointZero。

内容大小

内容视图的大小。

讨论
大小的单位是点。默认大小为 CGSizeZero。

相关示例代码
石英演示

Try using following method of UIScrollViewProtocol


- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView

Default value if contentSize is zero....see following details from apple documentation.

contentOffset
The point at which the origin of the content view is offset from the origin of the scroll view.

Discussion
The default value is CGPointZero.

contentSize

The size of the content view.

Discussion
The unit of size is points. The default size is CGSizeZero.

Related Sample Code
QuartzDemo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文