wolf71
Sep 05, 2016 - 05:53
how to using objc get the currentRunLoop ?
- (NSRunLoop *)currentRunLoop
using :
c = cdll.LoadLibrary(None)
c.currentRunLoop()
but, error.
how to using objc get the currentRunLoop ?
using :
c = cdll.LoadLibrary(None)
c.currentRunLoop()
but, error.
from objc_util import *
NSRunLoop=ObjCClass('NSRunLoop')
r=NSRunLoop.currentRunLoop()
@JonB Thanks. It's ok.
What exactly are you trying to do?
@JonB It's work. :-)