结合页面控制+滚动视图(包括图像视图)+文本视图
我想创建一个视图,其中包括; ScrollView、PageControl、TextView(如图所示)...
我有一个 NSArray,其中包含 img 地址和文本。因此,获取图像及其文本并正确放置它们是没有问题的。我的问题是我不能同时使用页面控制和页面控制。滚动视图的意思是;
如果我在
(IBAction)changePage:(id)sender //for valuechange event pagecontrol
页面控制中编写代码可以正常工作但滚动不能。 中编写代码
(void)scrollViewDidEndDecelerating
否则,如果我在这次滚动
,但页面控制却没有..我怎样才能将它们组合起来并正确地协同工作???
笔记: 这些 SS 取自 IOS 模拟器,这意味着它可以正常工作,而不仅仅是图像。界面上有 4 个组件;(正确的顺序)导航栏、滚动视图、页面控制、文本视图。通常 imageview 不存在,我在 viewDidLoad() 上添加其中 1 个,在 changePage 方法上添加其他组件。
I want to make an view that include; ScrollView,PageControl,TextView (As you see at pic)...
I have an NSArray that include img adress and text. So there is no problem take an image and its text and put them correctly. My problem is I can'u use both of page control & scrollview that mean;
If I write code in
(IBAction)changePage:(id)sender //for valuechange event pagecontrol
pagecontrol is work correctly but scrolling not. Otherwise If I write code in
(void)scrollViewDidEndDecelerating
this time scrollworks but page control does not..
How can I combine them and work together correctly???
NOTE:
These SS taken from IOS simulator that mean it works correctly not an image only. On interface there are 4 component;(correct order) navigation bar, scrollview,pagecontrol,textview.normally imageview does not exist ı add 1 of them on viewDidLoad() and others on changePage methods.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在changePage方法中计算内容的宽度并使用scrollRectToVisible它的工作原理...
in changePage method calculate the width of content and use scrollRectToVisible It works...