navigationbar的一些设置记录

1.设置navigationbar背景颜色

[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];

2.设置按钮颜色

self.navigationController.navigationBar.tintColor = [UIColor whiteColor];

3.设置标题颜色及大小

方法1:

UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 144)];

title.text = @"帮助";

title.textAlignment = NSTextAlignmentCenter;

title.textColor = [UIColor whiteColor];

title.font = [UIFont systemFontOfSize:20];

self.navigationItem.titleView = title;

方法2:

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor,[UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextShadowColor,[NSValue valueWithUIOffset:UIOffsetMake(0, 0)], UITextAttributeTextShadowOffset,[UIFont fontWithName:@"Arial-Bold" size:0.0],UITextAttributeFont,nil]];

时间: 2024-11-09 07:38:53

navigationbar的一些设置记录的相关文章

设置记录历史命令的条数

在~/.bash_profile里面添加 export HISTSIZE=1000 From: http://bbs.chinaunix.net/thread-3612167-1-1.html 设置记录历史命令的条数,布布扣,bubuko.com

navigationController .navigationBar 的属性设置

需要做成的效果如下图的 // 头标题 self.title = @"求租仓库"; // 注册cell [用xib时候的注册方法] [self.tableView registerNib:[UINib nibWithNibName:@"MyTableViewCell" bundle:nil] forCellReuseIdentifier:@"cell"]; // 设置背景颜色用rgb值设置的,// [UIColor colorWithRed:r/2

navigationbar背景图 设置左右按钮

// 设置控制器的title self.title = @"O(∩_∩)O哈哈~"; // 设置navigationbar 的样式 // self.navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent; // 设置navigationbar 的背景图 //[self.navigationController.navigationBar setBackgroundImage:[UIImage im

Android 访问权限设置记录-存档留着有用!

Android开发应用程序时,如果应用程序需要访问网络权限,需要在 AndroidManifest.xml 中加入以下代码: <uses-permission android:name=”android.permission.INTERNET”></uses-permission> 同样的如果用到其它的权限,也需要作出声明,部分权限列表如下: android.permission.ACCESS_CHECKIN_PROPERTIES 允许读写访问”properties”表在 chec

UINavigationController的navigationBar的常用设置(按钮,标题,颜色)

http://blog.csdn.net/u010229677白白手游专栏 使用: ViewController* vc = [[ViewController alloc] init]; self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:vc]; self.window.backgroundColor = [UIColor whiteColor]; [self.w

桌面支持--adobe reader设置记录上次阅读位置

adobe reader设置记录上次阅读位置

NavigationBar 详解 设置

1.设置标题: self.navigationItem.title =@"系统标题"; 运行: 2.自定义标题,设置titleView: 如果我们想改变标题的颜色和字体,就需要自己定义一个UILabel,自己设置好这个Label的内容,可以设置自己想要的字体.大小和颜色等.然后执行self.navigationItem.titleView = myLabel;就可以看到想要的效果. 代码实现: //自定义标题 UILabel *titleLable = [[UILabel alloc]

IP别名设置记录

IP别名设置: 首先我的电脑的eth0的IP已经配置过了:192.168.22.134  netmask 255.255.255.0 然后我还想为eth0这个网卡多配置几个IP地址,方法如下: ifconfig eth0:0 192.168.22.231 netmask 255.255.255.0 up 这样就为这个网卡又配置了一个IP:192.168.22.231. 其中eth0:xx是新的别名,可以用ifconfig再次查看,可以看到. 而eth0:xx中,eth0:是固定的,因为这是给et

python matplotlib画图常用设置记录查阅

为方便查找和使用python matplotlib相应的画图设置接口,将常用的设置书写在同一代码中,方便查阅,包含: 1.中文.特殊字符的设置 2.子图.标题.图例的设置 3.坐标轴的名称.刻度.间距等设置 4.线条的颜色.样式.宽度的设置 代码github链接:(待添加) #-*- coding:utf-8 -*- import numpy as np import numpy.random import matplotlib.pyplot as plt from pylab import *