I want to be able to hide the pagination dots on the last view of a UIPageViewController. There is this question which has already asked it but it is never answered.
If someone could just give me an overview of how this is achievable.
Thanks
EDIT:
func pageViewController(pageViewController: UIPageViewController, didFinishAnimating finished: Bool, previousViewControllers: [UIViewController], transitionCompleted completed: Bool) {
pageControl.hidden = true
print(pageControl.hidden)//Always is false
}