Open
Description
Through trial and error I got following to pass:
tmp = ObjCClass("UINavigationController").alloc().initWithRootViewController_(root)
Wouldn't it be nice to get that data from call signature:
tmp = ObjCClass("UINavigationController").alloc().init(rootViewController=root)
And then, perhaps, move to:
UINavigationController = ObjCClass("UINavigationController")
tmp = UINavigationController(rootViewController=root)