iOS小记 -- iOS监听UITabBar的Tab点击事件

UITabBar有代理方法可以监听:

1. 遵守代理协议:

```

@interface InspectorManagerViewController ()

```

2. 实现代理方法:

```

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item

{

LJLog(@"item name = %@", item.title);

}

```

你可能感兴趣的:(iOS小记 -- iOS监听UITabBar的Tab点击事件)