Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zhufengyi committed Jul 6, 2015
2 parents b6d0ed7 b07a4b8 commit 136c4b9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 6,28 @@
> NSArray *selectImageArray =[NSArray arrayWithObjects:@"feed_tab_butten_press.png",@"movie_tab_butten_press.png",@"me_tab_butten_press.png", nil];
替换成自己的两套图片

<<<<<<< HEAD
#2.如何更换tabar的标题
进入CustomController.m
> NSArray *titleArray =[NSArray arrayWithObjects:@"first",@"second",@"third", nil];
#3. 如何把几个标签页换成自己的页面
=======
==============
2.如何更换tabar的标题
进入CustomController.m
NSArray *titleArray =[NSArray arrayWithObjects:@"first",@"second",@"third", nil];
==============
3. 如何把几个标签页换成自己的页面
>>>>>>> b07a4b8b40f4730e695793a699cc2ef477d1acae
//进入CustomController.m
#import "FirstViewController.h"
//#import "SecondViewController.h"
//#import "ThirdViewController.h"
变成自己的
NSArray *classNameArray =[NSArray arrayWithObjects:@"FirstViewController",@"SecondViewController",@"ThirdViewController", nil];
也变成自己的文件名
<<<<<<< HEAD


#4.其他修改导航条或标签栏的基本用法都放在了
Expand All @@ -34,6 44,24 @@ NSArray *classNameArray =[NSArray arrayWithObjects:@"FirstViewController",@"Sec
>//#define Nav_back_icon [[UIImage imageNamed:@"back_Icon.png"]
>//#pragma mark ---Tabbar config
=======
===============
4.其他修改导航条或标签栏的基本用法都放在了
ZFYTabbar.h 头文件中
//导航栏色调设置
//#define Nav_tintColor [UIColor colorWithRed:200.0/255.0 green:100.0/255.0 blue:100.0/255.0 alpha:1];
//导航栏的背景颜色
//#define Nav_background_Color [UIColor colorWithRed:10.0/255.0 green:10.0/255.0 blue:10.0/255.0 alpha:1]
//导航栏的标题字体大小
//#define Nav_Title_Font [UIFont boldSystemFontOfSize:16]
//导航栏的标题颜色
//#define Nav_Title_Color [UIColor colorWithRed:200.0/255.0 green:200.0/255.0 blue:200.0/255.0 alpha:1]
//设置返回按钮的图片
//#define Nav_back_icon [[UIImage imageNamed:@"back_Icon.png"]


//#pragma mark ---Tabbar config
>>>>>>> b07a4b8b40f4730e695793a699cc2ef477d1acae
//字体未选中颜色设置
>//#define Tab_TITLE_NORMAL_COLOR [UIColor colorWithRed:20/255.0 green:20/255.0 blue:120/255.0 alpha:1]
>//字体已选中颜色设置
Expand Down

0 comments on commit 136c4b9

Please sign in to comment.