UIViewController所有者(获取另一个实例的实例)

时间:2013-12-16 06:48:31

标签: ios objective-c uiviewcontroller

我这里有代码

@interface FFRightSidebarController ()
@property (nonatomic, strong) FFActivitiesController *activitiesController;
@property (nonatomic, strong) FFSidebarTableController *dummy2;
@end

所以基本上RightSidebarController实例包含了activitiesController的实例

问题是:

can i get the instance of rightsidebarcontroller from activitiescontroller (getting the instance of an instance):

它基本上就像在这个链接here中获取UIView的视图控制器一样。

就这种情况而言,它是ViewController的ViewController。

如果不够清楚,请问我..谢谢你......

2 个答案:

答案 0 :(得分:1)

如果要访问parentViewController

,可以使用此link
  

要访问父View控制器,您可以使用self.parentViewController。一旦拥有它,您只需使用其视图属性

即可访问其视图

如果它能解决您的问题,请告诉我。

希望这会有所帮助。

答案 1 :(得分:0)

有一个项目Over here,详细解释了滑动视图控制器的所有可能方式。