为什么UIPageControl上没有更新currentPage指示器?

时间:2015-02-28 15:27:17

标签: ios uipagecontrol

我使用以下代码更新应用中的currentPage指示符:

pgcNotification.currentPage = 3;
pgcNotification.numberOfPages = 4;

尽管如此,指标永远不会改变并始终保持在第一位置。

1 个答案:

答案 0 :(得分:6)

问题在于,您首先要说明页数,其次是当前页面。从来没有相反。

pgcNotification.numberOfPages = 4;
pgcNotification.currentPage = 3;