码迷,mamicode.com
首页 > 其他好文 > 详细

navigationController基本设置

时间:2014-05-16 08:11:48      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   blog   c   ext   color   http   

//    设置导航栏的文字
    
self.navigationItem.title = @"功效";


//    设置导航栏的颜色
    
self.navigationController.navigationBar.barTintColor = [UIColor orangeColor];

//    设置导航栏上字体颜色
    [
self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],NSForegroundColorAttributeNamenil]];

//    设置导航栏不透明
    self.navigationController.navigationBar.translucent = NO;
 
 
//设置左侧返回按钮颜色
    
self.navigationItem.leftBarButtonItem.tintColor = [UIColor whiteColor];
 
//设置右侧取消按钮的颜色
    
self.navigationItem.rightBarButtonItem.tintColor = [UIColor whiteColor];
 
导航控制器也可添加一下其他控件,如搜索栏,分段视图等
例:

mySearchBar = [[UISearchBaralloc] initWithFrame:CGRectMake(0, 25, 50, 30)];

    mySearchBar.delegate = self;

    mySearchBar.placeholder = @"请输入查询的蔬菜、水果等的品名";//  设置占位符

   

    searchDisplayController = [[UISearchDisplayControlleralloc] initWithSearchBar:mySearchBarcontentsController:self];

    searchDisplayController.active = NO;

    self.navigationItem.titleView = mySearchBar;//  添加到导航控制器上

    

    [mySearchBarrelease];

    [searchDisplayControllerrelease];

运行效果如下:

bubuko.com,布布扣

 

navigationController基本设置,布布扣,bubuko.com

navigationController基本设置

标签:style   blog   c   ext   color   http   

原文地址:http://www.cnblogs.com/k-k-m/p/3726107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!