+bool UINavigationBar$setBarStyle$_(SBAppWindow<WinterBoard> *self) {
+ if (Info_ != nil) {
+ NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"];
+ if (number != nil) {
+ [self wb_setBarStyle:[number intValue]];
+ return true;
+ }
+ }
+
+ return false;
+}
+
+/*id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
+ _trace();
+
+ if (Info_ != nil) {
+ NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"];
+ if (number != nil)
+ style = [number intValue];
+
+ UIColor *color = [Info_ colorForKey:@"NavigationBarTint"];
+ if (color != nil)
+ tint = color;
+ }
+
+ return [self wb_initWithFrame:frame withBarStyle:style withTintColor:tint];
+}*/
+
+/*id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
+ self = [self wb_initWithCoder:coder];
+ if (self == nil)
+ return nil;
+ UINavigationBar$setBarStyle$_(self);
+ return self;
+}
+
+id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
+ self = [self wb_initWithFrame:frame];
+ if (self == nil)
+ return nil;
+ UINavigationBar$setBarStyle$_(self);
+ return self;
+}*/
+
+void UINavigationBar$setBarStyle$(SBAppWindow<WinterBoard> *self, SEL sel, int style) {
+ if (UINavigationBar$setBarStyle$_(self))
+ return;
+ return [self wb_setBarStyle:style];
+}
+