当前位置: 代码迷 >> Iphone >> 求指教,UIScrollView 中UIPageControl有关问题
  详细解决方案

求指教,UIScrollView 中UIPageControl有关问题

热度:278   发布时间:2016-04-25 06:48:39.0
求指教,UIScrollView 中UIPageControl问题
UIPageControl控制页数的点点间距怎么调节?求大虾指教~

------解决方案--------------------
sizeForNumberOfPages:
Returns the size the receiver’s bounds should be to accommodate the given number of pages.

- (CGSize)sizeForNumberOfPages:(NSInteger)pageCount
Parameters
pageCount
The number of pages to fit in the receiver’s bounds.
Return Value
The minimum size required to display dots for the page count.
------解决方案--------------------
sizeForNumberOfPages 
不是刚刚有人发过了吗?怎么又开一贴?
------解决方案--------------------
sizeForNumberOfPages就是说你可以根据具体有几页来设置起大小,传入的是一个CGSize数据结构的的值...
比如3页,你可以是CGSizeMake(20*3,20);
------解决方案--------------------
原先一直以为要重写的丢人了~
------解决方案--------------------
jiong,后来不需要那么多页数了,最后这个问题没有解决。。。。