#import #import #import @class RNNOptions; @protocol RNNOptionsProtocol @optional - (void)resetOptions; - (void)applyOn:(UIViewController *)viewController; @end @interface RNNOptions : NSObject - (instancetype)initWithDict:(NSDictionary*)dict; - (void)mergeWith:(NSDictionary*)otherOptions; - (void)applyOn:(UIViewController *)viewController defaultOptions:(RNNOptions*)defaultOptions; @end