[iOS] iPad title in navigation bar clear shadow

This commit is contained in:
Kirill Zhdanovich 2013-08-12 17:29:01 +03:00
parent 299fd34c40
commit 2b3240ca7b

View file

@ -69,10 +69,11 @@
self.navigationItem.leftBarButtonItem = [self getCustomButtonWithImage:@"ic_back"];
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
self.navigationItem.leftBarButtonItem = [self getCustomButtonWithImage:@"ic_back"];
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor colorWithRed:253.f/255.f
green:241.f/255.f
blue:43.f/255.f
alpha:1.f] forKey:UITextAttributeTextColor];
self.navigationController.navigationBar.titleTextAttributes = @{UITextAttributeTextColor : [UIColor colorWithRed:253.f/255.f
green:241.f/255.f
blue:43.f/255.f
alpha:1.f],
UITextAttributeTextShadowColor: [UIColor clearColor]};
}
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request