I'm trying to extend standard UIViewController
with some custom methods.
#import <UIKit/UIKit.h>
@interface UIViewController (UIViewControllerExtension)
- (void) showNoHandlerAlertWithTitle:(NSString *)title andMessage: (NSString*)message;
- (void) showAlertWithTitle:(NSString *)title andMessage:(NSString*)message buttonTitles:(NSArray<NSString *>*)titles andHandler:(void (^)(UIAlertAction * action))handler;
@end
How can I use extended UIViewController
now? I need to inherit my custom view controllers from extended UIViewController
.
Create a file "UIViewController+Alert.h" containing:
Then, create a file "UIViewController+Alert.m" that contains:
In say your "SampleViewController.h":
Then in "SampleViewController.m":