Pass value to parent controller when dismiss the controller

前端 未结 3 680
广开言路
广开言路 2021-01-06 07:12

I want to send data to parentviewcontroller but the following code crashes. Give me the solution

Post *vc;
vc.abc =@\"Comment Conttroller\";
[self.parentView         


        
3条回答
  •  半阙折子戏
    2021-01-06 07:48

    vc doesn't seem to be initialized.

    You can probably do this,

    vc = (Post *)self.parentViewController;
    vc.abc = @"Comment Conttroller";
    [vc dismissModalViewControllerAnimated:YES];
    

    Since the view controller you want to affect is the parentViewController, you should be able to cast and set the abc property.

提交回复
热议问题