AppleCFRunLoop - UBogun/Xojo-iosLib GitHub Wiki
Inherits from CFObject
Memory leak check: not yet done
Status: Almost fully undone. Currently only usable where a CurrentLoop or MainLoop needs to be passed as parameter
A CFRunLoop object monitors sources of input to a task and dispatches control when they become ready for processing. They are useful in handling timers and threads.
##Constructor There is no constructor for this class. Instead, used CurrentLoop or MainLoop.
##Methods Run(): Runs the CFRunLoop object in its default mode indefinitely.
Stop(): Stops the CFRunLoop object execution.
##Shared Properties CurrentLoop As AppleCFRunLoop (read-only): Returns the current thread's RunLoop.
MainLoop As AppleCFRunLoop (read-only): Returns the app's main RunLoop.