beginVoidpublic
Begins a new RunLoop. Any deferred actions invoked after the begin will be buffered until you invoke a matching call to run.end(). This is a lower-level way to use a RunLoop instead of using run().
run.begin(); // code to be executed within a RunLoop run.end();
Returns:
-
Void
Please login to continue.