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