IOS Seogle介于Google Maps infoWindow和VC之间

时间:2016-09-13 07:33:44

标签: google-maps push infowindow

我正试图从谷歌地图infoWindow推送到另一个vc。所以我将segu从托管Google地图的vc连接到另一个vc。 我打电话的时候

[self performSegueWithIdentifier:@"infoView2Store" sender:self],

我收到以下异常消息:

Receiver (<MapView: 0x7fde105f3ac0>) has no segue with identifier 'infoView2Store'

我正确设置了Segue标识符。我可以错过什么?

1 个答案:

答案 0 :(得分:0)

我花了差不多一个星期来解决这个问题,但找不到出路。最后,我从故事板改为IB。现在通过调用:

来转到新VC
StoreViewController *controller = [[StoreViewController alloc] initWithNibName:@"StoreView" bundle:nil];
[self.navigationController pushViewController:controller animated:YES];

我仍然有兴趣知道是否有人可以通过Segue从infoWindow推送到新的VC。