如何从标签栏按钮引发模态视图

时间:2012-05-13 00:22:49

标签: ios

我正在使用它:

https://github.com/boctor/idev-recipes/tree/master/RaisedCenterTabBar

任何人都知道如何从相机按钮中获取模态视图(如果相机按钮用于除相机之外的其他东西)?

1 个答案:

答案 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];

}