所以这就是我想要实现的目标。
我有一个通用的MapViewController
视图控制器和另外两个要从中发送数据的视图控制器。ExploreViewController
和SavedPlacesViewController
。
我没有使用 segues 来做到这一点。相反,我正在使用这样的东西:
[mapButton addTarget:self action:@selector(showExploreMap:)
forControlEvents:UIControlEventTouchUpInside];
然后声明将showExploreMap
方法推MapViewController
送到navigationController
.
我已经这样做了ExploreViewController
,而且效果很好,但我不知道如何才能做到这一点,SavedPlacesViewController
因为数据来自不同的模型。
我想不知何故我需要弄清楚哪个ViewController
在调用MapViewController
,这样我才能弄清楚要使用哪个数据模型。
有什么办法可以做到这一点吗?