Skip to content

Instantly share code, notes, and snippets.

@samerbam
samerbam / PageControl.py
Last active April 2, 2020 21:49
UIPageControl Class for pythonista using objc_utils.
import ui
from objc_util import ObjCClass, CGRect, create_objc_class, ObjCInstance, UIColor
UIPageControl = ObjCClass('UIPageControl')
def changePage(_self, _cmd):
self = ObjCInstance(_self)
self.page_control.set_page(self.page_control.pageControl.currentPage())