How can I use objc_util to call Objective-C methods that contain underscores?
Usually, I'd write object._doSomethingWithParameter_(param), but the problem is that only the second underscore indicates a parameter. The first one is part of the method name. Pythonista however will convert that to the selector :doSomethingWithParameter:, which requires two parameters.
How do I call the following method:
```objectivec
- (void)_addActionWithTitle:(id)arg1 image:(id)arg2 style:(int)arg3 handler:(id)arg4;