自定义UITabBar替换系统默认的,目的是为了在UITabBar中间位置添加一个“+号按钮”

1、自定义WBTabBar,让其继承自UITabBar,并定义点击事件代理方法。

.h方法里面

#import <UIKit/UIKit.h>

@class WXReleaseTabBar;

@protocol WXReleaseTabBarDelegate <WXReleaseTabBarDelegate>

@optional

- (void)tabBarDidClickPlusButton:(WXReleaseTabBar *)tabBar;

@end

@interface WXReleaseTabBar : UITabBar

@property (nonatomic, weak) id<WXReleaseTabBarDelegate> tabBarDelegate;

@end

.m方法里面

//定义一个按钮

@property (nonatomic, strong) UIButton *plusButton;

然后初始化

- (id)initWithFrame:(CGRect)frame

{

self = [super initWithFrame:frame];

if (self) {

UIButton *plusBtn = [[UIButton alloc] init];

[plusBtn setBackgroundImage:[UIImage imageNamed:@"shareicon"] forState:UIControlStateNormal];

[plusBtn setBackgroundImage:[UIImage imageNamed:@"shareicon"] forState:UIControlStateHighlighted];

[plusBtn setImage:[UIImage imageNamed:@"shareicon"] forState:UIControlStateNormal];

[plusBtn setImage:[UIImage imageNamed:@"shareicon"] forState:UIControlStateHighlighted];

plusBtn.size = plusBtn.currentBackgroundImage.size;

[plusBtn addTarget:self action:@selector(plusClick) forControlEvents:UIControlEventTouchUpInside];

[self addSubview:plusBtn];

self.plusButton = plusBtn;

}

return self;

}

//添加约束

- (void)layoutSubviews

{

[super layoutSubviews];

CGFloat width = self.width;

CGFloat height = self.height;

self.plusButton.center = CGPointMake(width * 0.5, height * 0.5);

CGRect tempRect = self.plusButton.frame;

tempRect.origin.y =  -20;

self.plusButton.frame = tempRect;

int index = 0;

CGFloat tabBarButtonW = width / 5;

CGFloat tabBarButtonH = height;

CGFloat tabBarButtonY = 0;

for (UIView *tabBarButton in self.subviews) {

if (![NSStringFromClass(tabBarButton.class) isEqualToString:@"UITabBarButton"]) continue;

CGFloat tabBarButtonX = index * tabBarButtonW;

if (index >= 2) {

tabBarButtonX += tabBarButtonW;

}

tabBarButton.frame = CGRectMake(tabBarButtonX, tabBarButtonY, tabBarButtonW, tabBarButtonH);

index++;

}

[self bringSubviewToFront:self.plusButton];

}

//重写系统的hitTest方法让处于tabbar外部的按钮部分也可以被点击

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {

if (self.isHidden == NO) { // 当前界面 tabBar显示

CGPoint newPoint = [self convertPoint:point toView:self.plusButton];

if ( [self.plusButton pointInside:newPoint withEvent:event]) { // 点 属于按钮范围

return self.plusButton;

}else{

return [super hitTest:point withEvent:event];

}

}else {

return [super hitTest:point withEvent:event];

}

}

//被点击的方法

- (void)plusClick

{

// 通知代理

if ([self.tabBarDelegate respondsToSelector:@selector(tabBarDidClickPlusButton:)]) {

[self.tabBarDelegate tabBarDidClickPlusButton:self];

}

}

2、tabBar是UITabBarController的只读成员变量(属性),是不让修改的,在UITabBarController.m中的操作如下:

@interface WXTabbarViewController ()<UITabBarDelegate>

@end

3、然后在UITabBarController.m初始化里面我们可以使用KVC的方式,更换系统自带的UITabBar,实现代码如下:

xxxTabBar(自定义的tabbar) *tabBar = [[xxxTabBar alloc] init]; 

xxxTabBar.tabBarDelegate= self;
[self setValue:tabBar forKeyPath:@"tabBar"];

4、在UITabBarController.m实现点击的代理方法

- (void)tabBarDidClickPlusButton:(WXReleaseTabBar *)tabBar

{

NSLog(@"发布按钮");

//    ComposeViewController *composeViewController= [[ComposeViewController alloc] init];

//    UINavigationController * navigationController = [[UINavigationController alloc]initWithRootViewController:composeViewController];

//    [self presentViewController:navigationController animated:YES completion:nil];

}

iOS 自定义底部tabbar加号按钮实现方法的更多相关文章

  1. Wepy--小程序自定义底部tabBar

    PS后续: 说来惭愧, 没想到这篇文章浏览的人有点多. 说实话写的挺乱的. 并且自定义tabbar还有闪屏的问题. 因为有好几位道友都问了这个问题,  其中一位因为项目很急,所以就研究了一下(也是借鉴 ...

  2. iOS开发项目之四 [ 调整自定义tabbar的位置与加号按钮的位置]

    自定义tabbar与按钮的添加 01 - 把系统的tabbar用我们自己的覆盖 LHQTabBar *lhqTabBar = [[LHQTabBar alloc]init]; [self setVal ...

  3. iOS自定义tabBar

    在我们的项目中经常会自己自定义tabBar因为苹果自带的真的太丑了!也不满足我们的项目需求. 好 开始行动吧! 先上图看下我们最终实现的效果: 继承UItabBar自定义一个自己的tabBar .h# ...

  4. iOS自定义的UISwitch按钮

    UISwitch开关控件 开关代替了点选框.开关是到目前为止用起来最简单的控件,不过仍然可以作一定程度的定制化. 一.创建 UISwitch* mySwitch = [[ UISwitchalloc] ...

  5. iOS 自定义返回按钮,保留系统滑动返回

    原文链接 自定义返回按钮保留系统滑动返回手势.gif 1.简介 使用苹果手机,最喜欢的就是用它的滑动返回.作为一个开发者,我们在编写很多页面的时候,总是会因为这样那样的原因使得系统的滑动返回不可用.使 ...

  6. 拦截iOS系统导航栏返回按钮事件-三种方法

    方法一:在dealloc里面书写监听事件,因为只有pop才会调用dealloc,push不会掉用 - (void)dealloc {YLLog(@"123"); } 方法二:在- ...

  7. iOS 自定义UINavigationController返回按钮

    主要代码如下: //自定义导航栏返回按钮 self.navigationItem.leftBarButtonItem = ({ //导航栏返回背景视图 UIView *view = [[UIView ...

  8. iOS 自定义NavigationBar右侧按钮rightBarButtonItem

    自定义右侧的一个按钮 UIBarButtonItem *myButton = [[UIBarButtonItem alloc] initWithTitle:@"主页" style: ...

  9. iOS中UI阶段常用的一些方法

    UI 即 UserInterface(用户界面 1.iOS系统版本,每年都有更新.对我们开发者而言,主要的是观察API的变化. 2.iPhone新手机发布,会产生不同尺寸的屏幕,现在市面上有4种尺寸, ...

随机推荐

  1. jQuery-4.动画篇---jQuery核心

    jQuery中each方法的应用 jQuery中有个很重要的核心方法each,大部分jQuery方法在内部都会调用each,其主要的原因的就是jQuery的实例是一个元素合集 如下:找到所有的div, ...

  2. 学习笔记:spark Streaming的入门

    spark Streaming的入门 1.概述 spark streaming 是spark core api的一个扩展,可实现实时数据的可扩展,高吞吐量,容错流处理. 从上图可以看出,数据可以有很多 ...

  3. MySQL中MyISAM与InnoDB的主要区别对比

    特征 MyISAM InnoDB 聚集索引 否 是 压缩数据 是(仅当使用压缩行格式时才支持压缩MyISAM表.使用压缩行格式和MyISAM的表是只读的.) 是 数据缓存 否 是 加密数据 是(通过加 ...

  4. [LeetCode&Python] Problem 235. Lowest Common Ancestor of a Binary Search Tree

    Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BS ...

  5. Golang微服务:Micro Trace使用opentracing jaeger

    trace Micro通过Wrapper实现了三种trace接口,aswxray,opencensus,opentracing,这里主要关注opentracing,opentracing已成为行业标准 ...

  6. cmd中运行maven -v提示JAVA_HOME的配置问题解决办法

    问题描述: 在安装maven之后,输入:mvn --version进行查询,结果是: The JAVA_HOME environment variable is not defined correct ...

  7. eclipse启动tomcat错误解决

    clipse启动tomcat报出下面的错误提示: 控制台: 九月 06, 2018 9:01:31 下午 org.apache.tomcat.util.digester.SetPropertiesRu ...

  8. C语言中的二维数组

    1.二维数组的定义和引用 一. 数据类型 数组名[常量表达式1][常量表达式2]; (1)假如有个二维数组array[n][m],则行下标的取值范围0~n-1 (2)列下标的取值范围0~m-1 (3) ...

  9. python 第三方库

    1.tqdm 进度条 from tqdm import tqdm for i in tqdm(range(10000)): pass 2.fire 自动创建命令行接口(command line int ...

  10. qt+opencv 构建项目时报错——no such file or directory

    构建前,记得,一定一定一定要先点击执行qmake: