I have a subclass of UIViewController. In order to present an alert in its instance method I would do
[self presentViewController:alert animated:YES completion:nil];
This time I need to present this alert in a class level method. There is no known class method for selector 'presentViewController:animated:completion:'
Is there any workaround?