10年积累的网站建设、成都网站设计经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先制作网站后付款的网站建设流程,更有永清免费网站建设让你可以放心的选择与我们合作。
#tab a.on,#tab a.on:link,#tab a.on:visited{color: #ca9eff;background:#4f1090;text-decoration:none;font-size:12px;margin-left:2px} 这是导航菜单被选中时的代码,color: #ca9eff是字体颜色,background:#4f1090是背景颜色,如果不想让导
要设置透明度只需要修改A值。下面这行代码意思是修改导航栏的背景颜色,//背景色修改[self.navigationController.navigationBar setBackgroundImage:[UIImage imageWithColor:[UIColor colorWithRGB:255 green:255 blue:255 alpha:1.0]] forBarMetrics:UIBarMetricsDefault];根据RGBA来修改背景色
状态栏的话2113,你把5261导航栏的风格设4102成黑的1653,即可 self.navigationController.navigationBar.barStyle = UIBarStyleBlack;导航栏字内体设为白色容[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]]; [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
这个要用自定义的view 才能设置:方法如下//设置标题// self.title = @"title1";//修改title 会改变navigationItem。title ,但反之不会,一般设置title用此方法就好了// self.navigationController.title = @"title2";// //自定义标题// UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];// view.backgroundColor = [UIColor redColor];UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];title.text = @"title3";title.textAlignment = NSTextAlignmentCenter;title.textColor = [UIColor redColor];self.navigationItem.titleView = title;