iPhone SDK-UIScrollView& UI页面控件
我创建了一个 UIScrollView / UIPageControl .xib 在 12 个图像之间滚动。 .xib 的底部是一个“提交”按钮,可以将滚动视图的值保存在 Web 服务中。
如何让“提交”按钮获取该值?
提前致谢!
I created a UIScrollView / UIPageControl .xib scrolling between 12 images. At the bottom of the .xib is a "Submit" button that would save the value of the scroll view in a web service.
How can I get the "submit" button to grab that value?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIScrollView 具有三个属性:contentOffset、contentInset 和 contentSize,它们定义用户的滚动状态。
特别是偏移量可能是您要发送到网络服务的内容。
The UIScrollView has three properties: contentOffset, contentInset, and the contentSize that define the user's scroll state.
The offset in particular is likely what you what to send to your web service.