iOS小记 -- iOS监听UITabBar的Tab点击事件
2019-02-27 本文已影响0人
沉睡的麦麦
UITabBar有代理方法可以监听:
1. 遵守代理协议:
```
@interface InspectorManagerViewController () <UITabBarDelegate>
```
2. 实现代理方法:
```
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item
{
LJLog(@"item name = %@", item.title);
}
```