iOS界面交互框架(1)任性傲嬌的TabBar們

簡介

UITabBar是iOS應(yīng)用界面交互經(jīng)常使用的系統(tǒng)控件,比如知名App:APP Store速客、支付寶盈滴、閑魚、簡書等撒汉。

  • APP Store


    APP Store.jpeg
  • 支付寶


    支付寶.jpeg
  • 閑魚


    閑魚.jpeg
  • 簡書


    簡書.jpeg

TabBar分類

  • TabBar大致可以分為兩類沟优,一類如APP Store和支付寶,為iOS原生的TabBar睬辐。


    APP Store.jpeg
支付寶.jpeg
  • 另一類為自定義的TabBar挠阁,如閑魚和簡書


    閑魚.jpeg
簡書.jpeg

Dome演示(仿閑魚TabBar)

GitHub地址:https://github.com/BigTortoise/LikeXianyuTabBarDome

  • RYJTabBarController.m

/**
 *  初始化子控制器
 */
- (void)setupChildVc:(UIViewController *)vc title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage
{
    // 設(shè)置文字和圖片
    vc.navigationItem.title = title;
    vc.tabBarItem.title = title;
    vc.tabBarItem.image = [UIImage imageNamed:image];
    //vc.tabBarItem.selectedImage = [UIImage imageNamed:selectedImage];
    
    // 包裝一個導(dǎo)航控制器宾肺,添加導(dǎo)航控制器tabbarcontroller的子控制器
    UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:vc];
    [self addChildViewController:nav];
       
}
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    //添加子控制器
    [self setupChildVc:[[RYJHomePageViewController alloc] init] title:@"首頁" image:@"tabBar_essence_icon" selectedImage:@"tabBar_essence_click_icon"];
    [self setupChildVc:[[RYJFishPondViewController alloc] init] title:@"魚塘" image:@"mycity_normal" selectedImage:@"mycity_highlight"];
    [self setupChildVc:[[RYJMessageViewController alloc] init] title:@"消息" image:@"message_normal" selectedImage:@"message_highlight"];
    [self setupChildVc:[[RYJMessageViewController alloc] init] title:@"我的" image:@"account_normal" selectedImage:@"account_highlight"];
    
    // 更換tabBar
    [self setValue:[[RYJTabBar alloc] init] forKeyPath:@"tabBar"];

    
}
+ (void)initialize{
    //設(shè)置未選中時的字體大小和顏色
    NSMutableDictionary *attrs = [[NSMutableDictionary alloc]init];
    attrs[NSFontAttributeName] = [UIFont systemFontOfSize:12];
    attrs[NSForegroundColorAttributeName] = [UIColor blackColor];
    //設(shè)置選中時字體大小和顏色
    NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
    //兩種狀態(tài)下字體大小一致
    selectedAttrs[NSFontAttributeName] = attrs[NSFontAttributeName];
    selectedAttrs[NSForegroundColorAttributeName] = [UIColor blackColor];
    
    // 通過appearance統(tǒng)一設(shè)置所有UITabBarItem的文字屬性
    // 后面帶有UI_APPEARANCE_SELECTOR的方法, 都可以通過appearance對象來統(tǒng)一設(shè)置
    UITabBarItem *item = [UITabBarItem appearance];
    [item setTitleTextAttributes:attrs forState:UIControlStateNormal];
    [item setTitleTextAttributes:selectedAttrs forState:UIControlStateSelected];
    
    UITabBar *bar = [UITabBar appearance];
//    [bar setBackgroundColor:[UIColor whiteColor]];
//    [bar setBarTintColor:[UIColor whiteColor]];
    bar.alpha = 1.0;
    [bar setBackgroundImage:[UIImage imageNamed:@"bg_tabbar  1"]];    
    
}


  • RYJTabBar.m
/** 發(fā)布按鈕 */
@property (nonatomic, weak) UIButton *publishButton;
- (instancetype)initWithFrame:(CGRect)frame{

    if (self = [super initWithFrame:frame]) {
        // 添加發(fā)布按鈕
        UIButton *publishButton = [UIButton buttonWithType:UIButtonTypeCustom];
        [publishButton setBackgroundImage:[UIImage imageNamed:@"post_normal"] forState:UIControlStateNormal];
//        [publishButton setBackgroundImage:[UIImage imageNamed:@"post_normal"] forState:UIControlStateHighlighted];
        
        publishButton.size = publishButton.currentBackgroundImage.size;
        
        [self addSubview:publishButton];
        self.publishButton = publishButton;
    }
    return self;
}

- (void)layoutSubviews{
    [super layoutSubviews];
    
    CGFloat width = self.width;
    CGFloat height = self.height;
    
    //設(shè)置發(fā)布按鈕frame
    self.publishButton.center = CGPointMake(width *0.5 , height *0);
    
    UILabel *label = [[UILabel alloc] init];
    label.text = @"發(fā)布";
    label.font = [UIFont systemFontOfSize:12];
    [label sizeToFit];
    [self addSubview:label];
    
    label.x = self.publishButton.x + 20;
    label.y = self.publishButton.y + 62;

    //設(shè)置其他UITabBarButton的frame
    CGFloat buttonY = 0;
    CGFloat buttonW = width / 5;
    CGFloat buttonH = height;
    NSInteger index = 0;
    for (UIView *button in self.subviews) {
        if (![button isKindOfClass:[UIControl class]] || button == self.publishButton) continue;
        
        // 計算按鈕的x值
        CGFloat buttonX = buttonW * ((index > 1)?(index + 1):index);
        button.frame = CGRectMake(buttonX, buttonY, buttonW, buttonH);
        
        // 增加索引
        index++;
    }

}

Dome演示.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市侵俗,隨后出現(xiàn)的幾起案子锨用,更是在濱河造成了極大的恐慌,老刑警劉巖隘谣,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件增拥,死亡現(xiàn)場離奇詭異,居然都是意外死亡洪橘,警方通過查閱死者的電腦和手機跪者,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來熄求,“玉大人渣玲,你說我怎么就攤上這事〉芡恚” “怎么了忘衍?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長卿城。 經(jīng)常有香客問我枚钓,道長,這世上最難降的妖魔是什么瑟押? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任搀捷,我火速辦了婚禮,結(jié)果婚禮上多望,老公的妹妹穿的比我還像新娘嫩舟。我一直安慰自己,他們只是感情好怀偷,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布家厌。 她就那樣靜靜地躺著,像睡著了一般椎工。 火紅的嫁衣襯著肌膚如雪饭于。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天维蒙,我揣著相機與錄音掰吕,去河邊找鬼。 笑死木西,一個胖子當(dāng)著我的面吹牛畴栖,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播八千,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼吗讶,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了恋捆?” 一聲冷哼從身側(cè)響起照皆,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎沸停,沒想到半個月后膜毁,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡愤钾,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年瘟滨,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片能颁。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡杂瘸,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出伙菊,到底是詐尸還是另有隱情败玉,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布镜硕,位于F島的核電站运翼,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏兴枯。R本人自食惡果不足惜血淌,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望财剖。 院中可真熱鬧悠夯,春花似錦、人聲如沸峰伙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽瞳氓。三九已至策彤,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間匣摘,已是汗流浹背店诗。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留音榜,地道東北人庞瘸。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像赠叼,于是被迫代替她去往敵國和親擦囊。 傳聞我的和親對象是個殘疾皇子违霞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

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