页面控件数量
我想知道一个应用程序中可以使用多少个页面控件?
der 有限制吗?
我正在使用 2 个页面控件,但无法添加超过 20 个图像,
我的第一个页面控件包含 18 个图像
,第二个页面控件包含 2 个图像。
它没有显示超过 20 张图像...我该如何解决这个问题?
I want to know how many page controls can be used in an application??
is der any limit??
I'm using 2 pagecontrols but m not able to add more than 20 images
i have 1st page control with 18 images
and 2nd pagecontrol with 2 images.
Its not showing more than 20 images... how can i resolve this problem??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIPageControl 是一个小控件它可以让您知道(最常见的)连接到
UIScrollView
时您所在的“页面”。您很可能指的是 UIScrollView。根据您设置的每个图像的尺寸,确定每个“页面”上可以容纳的图像数量。
如果您想在单个页面上容纳更多图像,请尝试较小的图像尺寸。
UIPageControl is a small control that lets you know what "page" you are on when (most commonly) connected to a
UIScrollView
.You are most likely referring to a UIScrollView. Depending on what the dimensions you set each image determines how many you can fit on each "page".
If you want to fit more images on a single page, try a smaller image size.