为什么不更新 UIPageControl 上的 currentPage 指示器?

Why is not updated currentPage indicator on UIPageControl?

我正在使用以下代码更新我的应用程序中的 currentPage 指标:

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

尽管如此,指标永远不会改变,始终停留在第一个位置。

问题是你,首先要说页数,其次是当前页数。绝不会相反。

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