码迷,mamicode.com
首页 > 移动开发 > 详细

ios 自定义tabbar

时间:2014-09-20 14:56:58      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   使用   ar   for   文件   

.h文件:

#import <UIKit/UIKit.h>

@interface YLYTabBar : UIView

@end

.m文件

#import "YLYTabBar.h"

@implementation YLYTabBar

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // 1.设置背景色
        self.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithNamed:@"tabbar_background"]];
        
    }
    return self;
}

使用:

-(void)addTabBar
{
    YLYTabBar *myTabBar = [[YLYTabBar alloc] init];
    myTabBar.frame = self.tabBar.bounds;
    [self.tabBar addSubview:myTabBar];
}

-(void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    //移除之前的4各UITabBarButton
    for (UIView *child in self.tabBar.subviews) {
        if ([child isKindOfClass:[UIControl class]]) {
            [child removeFromSuperview];
        }
    }
}

 

ios 自定义tabbar

标签:style   blog   color   io   os   使用   ar   for   文件   

原文地址:http://www.cnblogs.com/yuanliyong520/p/3983214.html

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