我正在使用它:
https://github.com/boctor/idev-recipes/tree/master/RaisedCenterTabBar
任何人都知道如何从相机按钮中获取模态视图(如果相机按钮用于除相机之外的其他东西)?
答案 0 :(得分:0)
在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];
}