需求
之前已经实现了自定义tabbar,如图所示:
自定义tabbar.jpeg
现在需要实现一个类似今日头条tabbar的功能 —— 如果继续点击当前tabbar的选中项,那么该界面需要刷新uitableview。
分析
既然已经自定义了tabbar,那么最简单的就是在自定义中给tabbar中需要的uitabbarbutton添加事件 —— 点击就发送通知,并且将当前的索引传出去。对应的界面监听通知,拿到索引比对,如果和当前索引一致,就执行对应的操作。
实现
1. 自定义tabbar的layoutsubviews中绑定事件
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- ( void )layoutsubviews
{
[super layoutsubviews];
for (uibutton * tabbarbutton in self.subviews) {
if ([tabbarbutton iskindofclass:nsclassfromstring(@ "uitabbarbutton" )]) {
//监听tabbar的点击
//绑定tag 标识
tabbarbutton.tag = index;
//监听tabbar的点击
[tabbarbutton addtarget:self action:@selector(tabbarbuttonclick:) forcontrolevents:uicontroleventtouchupinside];
}
}
}
|
2. 监听事件,发送通知
1
2
3
4
5
6
7
8
9
10
11
|
- ( void )tabbarbuttonclick:(uicontrol *)tabbarbtn{
//判断当前按钮是否为上一个按钮
//再次点击同一个item时发送通知出去 对应的vc捕获并判断
if (self.previousclickedtag == tabbarbtn.tag) {
[[nsnotificationcenter defaultcenter] postnotificationname:
@ "doubleclicktabbaritemnotification" object:@(tabbarbtn.tag)];
}
self.previousclickedtag = tabbarbtn.tag;
}
|
对应的uiviewcontroller监听通知
1
2
3
4
|
- ( void )viewdidload {
[super viewdidload];
[[nsnotificationcenter defaultcenter]addobserver:self selector:@selector(doubleclicktab:) name:@ "doubleclicktabbaritemnotification" object:nil];
}
|
3. 监听到通知,比对后执行操作
1
2
3
4
5
6
7
8
|
-( void )doubleclicktab:(nsnotification *)notification{
//这里有个坑 就是直接用nsinteger接收会有问题 数字不对
//因为上个界面传过来的时候封装成了对象,所以用nsnumber接收后再取值
nsnumber *index = notification.object;
if ([index intvalue] == 1) {
//刷新
}
}
|
最终的效果请看:
总结
以上所述是小编给大家介绍的ios开发中tabbar再次点击实现刷新效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.cocoachina.com/ios/20180425/23176.html