博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios 自定义tabbar
阅读量:5056 次
发布时间:2019-06-12

本文共 827 字,大约阅读时间需要 2 分钟。

.h文件:

#import 
@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];        }    }}

 

转载于:https://www.cnblogs.com/yuanliyong520/p/3983214.html

你可能感兴趣的文章
FreeMarker解析json数据
查看>>
Java8 Lambda表达应用 -- 单线程游戏server+异步数据库操作
查看>>
次序+“选择不重复的记录”(3)——最大记录
查看>>
Codeforces 450 C. Jzzhu and Chocolate
查看>>
[Unity3D]Unity3D游戏开发MatchTarget的作用攀登效果实现
查看>>
ACdream 1115 Salmon And Cat (找规律&&打表)
查看>>
JSON、JSONP、Ajax的区别
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
css3动画——基本准则
查看>>
javaweb常识
查看>>
Java注解
查看>>
web自己主动保存表单
查看>>
一个小的日常实践——高速Fibonacci数算法
查看>>
机器学些技法(9)--Decision Tree
查看>>
drf权限组件
查看>>
输入月份和日期,得出是今年第几天
查看>>
Qt中子窗口全屏显示与退出全屏
查看>>
使用brew安装软件
查看>>
[BZOJ1083] [SCOI2005] 繁忙的都市 (kruskal)
查看>>