【发布时间】:2014-03-25 09:25:35
【问题描述】:
我创建了一个调用UIViewController 并将其加载为subview 的方法,就像这样
cameraViewController = [[CameraViewController alloc] init];
cameraViewController.view.frame = CGRectMake(0.0, 0.0, screenHeight, screenWidth);
[cameraViewController drawCameraView:htmlProjID ProjectGUID:selectedProjGUID DoorGUID:cell.currentItem.doorGUID Info:nil doorName:cell.currentItem.doorDesc ViewName:@"Finishing"];
[self.view addSubview:cameraViewController.view];
我想知道是否有一种简单的方法可以从原始UIViewController 访问camerViewController(subview) 的方法?
【问题讨论】:
标签: ios objective-c uiview uiviewcontroller subview