识别调用模态视图的viewcontroller

时间:2013-09-11 01:08:04

标签: ios objective-c xcode

我正在从多个位置调用一个模态viewcontoller,当我关闭它时,我想知道它是什么视图,所以我可以调用更新函数,如果它是这个自定义列表我已经制成。

我想知道如何在模态视图下调用ViewController中的方法。

现在我已经设置了一个委托,但它似乎没有调用我设置的方法。

请参阅代码。

ViewController.h

@interface PICTSharePictViewController : PICTBaseShareViewController <PICTConnModalViewControllerDelegate>

的.m

-(void)viewDidLoad{

           PICTConnModalViewController *cmodal = [self.storyboard instantiateViewControllerWithIdentifier:@"connModal"];
    cmodal.pictDelegate = self;
}

-(void)checkSwitches:(PICTConnModalViewController*)sender{
    NSLog(@"-----Check-----");
}

和ModalView

·H

@class PICTConnModalViewController;

@protocol PICTConnModalViewControllerDelegate
-(void)checkSwitches:(PICTConnModalViewController*)sender;

@end

@interface PICTConnModalViewController : PICTBaseViewController {

    __weak id <PICTConnModalViewControllerDelegate> sliderDelegate;

}


@property (nonatomic, weak) id <PICTConnModalViewControllerDelegate> pictDelegate;

的.m

-(void)viewDidLoad{

    [pictDelegate checkSwitches:self];
}

我没有错误或任何警告。谁能告诉我我做错了什么?

1 个答案:

答案 0 :(得分:1)

您可以使用模态/显示的VC上的-[UIViewController presentingViewController]方法访问显示模态视图控制器的视图控制器。