我正在使用这个:
https://github.com/boctor/idev-recipes/tree/master/RaisedCenterTabBar
我使用以下方法提出了模态视图:
在 BaseViewController.m 中添加了中心按钮
-(void) addCenterButtonWithImage:(UIImage*)buttonImage highlightImage:(UIImage*)highlightImage
只需添加观察者:
[button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
然后显然实现:
-(void)click:(id)sender{
[self presentModalViewController:[[UIViewController alloc] init] animated:YES];
}
当我的视图控制器出现时,我的标签栏消失了,如何将其保留在我的屏幕上?