|
|
|
|
239
|
viewController.view.backgroundColor = color;
|
239
|
viewController.view.backgroundColor = color;
|
240
|
}
|
240
|
}
|
241
|
|
241
|
|
|
|
242
|
+ NSString *screenBackgroundImageName = self.navigatorStyle[@"screenBackgroundImageName"];
|
|
|
243
|
+ if (screenBackgroundImageName) {
|
|
|
244
|
+
|
|
|
245
|
+ UIImage *image = [UIImage imageNamed: screenBackgroundImageName];
|
|
|
246
|
+ [viewController.view setBackgroundColor: [UIColor colorWithPatternImage: image]];
|
|
|
247
|
+ }
|
|
|
248
|
+
|
242
|
NSString *navBarBackgroundColor = self.navigatorStyle[@"navBarBackgroundColor"];
|
249
|
NSString *navBarBackgroundColor = self.navigatorStyle[@"navBarBackgroundColor"];
|
243
|
if (navBarBackgroundColor) {
|
250
|
if (navBarBackgroundColor) {
|
244
|
|
251
|
|