开发者

How to change UIWebview bottom toolbar color?

开发者 https://www.devze.com 2023-03-11 20:59 出处:网络
I have created a UIWebview in my app. I managed to change the background color of the navigation bar with setTintColor. However, I am unable to do th开发者_如何学JAVAe same for the bottom bar (with ba

I have created a UIWebview in my app. I managed to change the background color of the navigation bar with setTintColor. However, I am unable to do th开发者_如何学JAVAe same for the bottom bar (with back/forward/refresh buttons). Can anyone help?


Did you create the bottom bar yourself? It probably is an UIToolbar:

UIToolbar *bottomToolbar = [[UIToolbar alloc] init];
bottomToolbar.tintColor = [UIColor redColor];
0

精彩评论

暂无评论...
验证码 换一张
取 消