我想在UIPageViewController中显示UIPageControl的高度,从对象库拖到我的故事板。
在故事板的UIPageViewController中既不可见(因此我无法按住Ctrl键拖动来制作插座),也没有在UIPageViewController类引用中描述它?
如何获得对UIPageControl对象的引用呢?
即使在故事板中可访问的文档大纲(在@sasquatch指出时单击故事板左下角的小按钮时出现),也没有列出UIPageControl对象。这就是所呈现的:
答案 0 :(得分:0)
使用Swift 2.2可以使用以下内容。
UIPageControl.appearance()
UIPageControl符合UIAppearnce协议并且可以访问此方法。
这在技术上是UIPageControls"外观代理"但应该适合你。