默认情况下,通行证加载到PKAddPassesViewController
. 有什么方法可以知道在视图上按下了哪个按钮。
//this method runs when user either click on the cancel or add button
-(void)addPassesViewControllerDidFinish: (PKAddPassesViewController*) controller
{
[self dismissViewControllerAnimated:YES completion:nil];
}
我想获取在PKAddPassesViewController
. 我已经尝试使用下面的代码来访问标题,但我得到了null
。
NSLog(@"Title of button %@",controller.navigationController.navigationItem.rightBarButtonItem.title);