tabbaritem點擊狀態(tài) 字體顏色仍然是系統(tǒng)藍(lán)

-(void) initTabbar

{

? ? ? ? ?_HomeVC = [[NewHomeViewController alloc] init];

? ? ? ?{

? ? ? ? UIImage *localNormal = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e926 ", ? ? ? 20, [HqewUtil colorWithHexString:@"#93a2ae"])] ?imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

? ? ? ?UIImage *localSelect = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e925 ", 20, [HqewUtil colorWithHexString:@"#3762ad"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

? ? ? _HomeVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"首頁" image:localNormal selectedImage:localSelect];

}

SGLNavigationViewController *homeNaviCtrl = [[SGLNavigationViewController alloc] initWithRootViewController:_HomeVC];

_AddressVC = [[AddressBookViewController alloc] init];

_AddressVC.title = @"會員";

{

UIImage *onlineNormal = [[UIImage imageNamed:@"AddressBookMember-UnSelect.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

UIImage *onlineSelect = [[UIImage imageNamed:@"newAdressBookMemberSelect.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

_AddressVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"會員" image:onlineNormal selectedImage:onlineSelect];

}

SGLNavigationViewController *addressNaviCtrl = [[SGLNavigationViewController alloc] initWithRootViewController:_AddressVC];

// 消息

_manageVC = [[NewManagerViewController alloc] init];

_manageVC.title=@"管理";

{

UIImage *localNormal = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e90e ", 20, [ HqewUtil colorWithHexString:@"#93a2ae"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

UIImage *localSelect = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e90d ", 20, [HqewUtil colorWithHexString:@"#3762ad"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

_manageVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"管理" image:localNormal selectedImage:localSelect];

}

SGLNavigationViewController *messageListNaviCtrl = [[SGLNavigationViewController alloc] initWithRootViewController:_manageVC];

//? ? UINavigationController *messageListNaviCtrl = [[UINavigationController alloc] initWithRootViewController:_manageVC];

_PerSonCenterVC = [[NewPersonViewController alloc] init];

_PerSonCenterVC.title = @"我的";

{

UIImage *cartNormal = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e92d ", 20, [ HqewUtil colorWithHexString:@"#93a2ae"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

//? ? ? ? UIImage *cartSelect = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e92d ", 20, [HqewUtil colorWithHexString:@"#3762ad"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

UIImage *cartSelect = [[UIImage imageNamed:@"005782A5-EB25-44BB-A5E1-B2BB7C129B3E.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

_PerSonCenterVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"我的" image:cartNormal selectedImage:cartSelect];

}

SGLNavigationViewController *personNaviCtrl = [[SGLNavigationViewController alloc] initWithRootViewController:_PerSonCenterVC];

_PublishVC = [[PublishViewController alloc] init];

_PublishVC.title = @"發(fā)布";

{

//? [UIImage imageNamed:@""]? 替換[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e907 ", 20, [UIColor blueColor])]

UIImage *cartNormal = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e906 ", 20, [ HqewUtil colorWithHexString:@"#93a2ae"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

UIImage *cartSelect = [[UIImage iconWithInfo:TBCityIconInfoMake(@"\U0000e905 ", 20, [HqewUtil colorWithHexString:@"#50acee"])] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

_PublishVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"發(fā)布" image:cartNormal selectedImage:cartSelect];

}

SGLNavigationViewController *sendNeedNaviCtrl = [[SGLNavigationViewController alloc] initWithRootViewController:_PublishVC];

//設(shè)置tabbaritem字體點擊效果

NSMutableDictionary *textAttrs = [NSMutableDictionary dictionary];

textAttrs[NSForegroundColorAttributeName] =[ HqewUtil colorWithHexString:@"#999999"];

textAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:12];

NSMutableDictionary *selectTextAttrs = [NSMutableDictionary dictionary];

selectTextAttrs[NSForegroundColorAttributeName] = [HqewUtil colorWithHexString:@"#2251a5"];

selectTextAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:12];

/***/

[homeNaviCtrl.tabBarItem setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

[homeNaviCtrl.tabBarItem setTitleTextAttributes:selectTextAttrs forState:UIControlStateSelected];

[addressNaviCtrl.tabBarItem setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

[addressNaviCtrl.tabBarItem setTitleTextAttributes:selectTextAttrs forState:UIControlStateSelected];

[messageListNaviCtrl.tabBarItem setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

[messageListNaviCtrl.tabBarItem setTitleTextAttributes:selectTextAttrs forState:UIControlStateSelected];

[personNaviCtrl.tabBarItem setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

[personNaviCtrl.tabBarItem setTitleTextAttributes:selectTextAttrs forState:UIControlStateSelected];

//判斷并設(shè)置自定義的tabbar

NSMutableArray *navArray = [[NSMutableArray alloc]initWithCapacity:0];

[navArray addObject:homeNaviCtrl];

[navArray addObject:addressNaviCtrl];

//? ? [navArray addObject:sendNeedNaviCtrl];

[navArray addObject:messageListNaviCtrl];

[navArray addObject:personNaviCtrl];

_tabbarController = [[UITabBarController alloc] init];

//? 設(shè)置tabbarController要顯示viewController們瞧预。

_tabbarController .viewControllers=navArray;

self.window.rootViewController = _tabbarController;

}




要把設(shè)置字體點擊未點擊方法寫在tabbarcontroller成為根視圖控制器之前

tabbar 設(shè)置選中文字的顏色

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末乖订,一起剝皮案震驚了整個濱河市侮东,隨后出現(xiàn)的幾起案子葡幸,更是在濱河造成了極大的恐慌,老刑警劉巖稚伍,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件疼蛾,死亡現(xiàn)場離奇詭異,居然都是意外死亡愉舔,警方通過查閱死者的電腦和手機(jī)钢猛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來轩缤,“玉大人命迈,你說我怎么就攤上這事贩绕。” “怎么了壶愤?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵淑倾,是天一觀的道長。 經(jīng)常有香客問我征椒,道長娇哆,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任勃救,我火速辦了婚禮碍讨,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蒙秒。我一直安慰自己勃黍,他們只是感情好宋舷,可當(dāng)我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布腌零。 她就那樣靜靜地躺著阅悍,像睡著了一般椎眯。 火紅的嫁衣襯著肌膚如雪疟暖。 梳的紋絲不亂的頭發(fā)上晨炕,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天俏橘,我揣著相機(jī)與錄音茂腥,去河邊找鬼净捅。 笑死疑枯,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蛔六。 我是一名探鬼主播荆永,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼国章!你這毒婦竟也來了具钥?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤液兽,失蹤者是張志新(化名)和其女友劉穎骂删,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體四啰,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡宁玫,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了柑晒。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片欧瘪。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖匙赞,靈堂內(nèi)的尸體忽然破棺而出佛掖,到底是詐尸還是另有隱情妖碉,我是刑警寧澤,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布苦囱,位于F島的核電站嗅绸,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏撕彤。R本人自食惡果不足惜鱼鸠,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望羹铅。 院中可真熱鬧蚀狰,春花似錦、人聲如沸职员。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽焊切。三九已至扮授,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間专肪,已是汗流浹背刹勃。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留嚎尤,地道東北人荔仁。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像芽死,于是被迫代替她去往敵國和親乏梁。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容