0

我有两个viewController,viewControllerB,当通过navigationBar 的后退按钮返回viewControllerA 时,我要你传递一个布尔值。我使用了协议但不起作用。

在 ViewControllerB.h

 @protocol detailProgrammFiereDelegate <NSObject>
 @required
 -(void) addItemViewController: (ViewControllerB *)programmFiere withBool:(BOOL)booleanFiere;
 @end

 .....
 @property (nonatomic, weak)id <detailProgrammFiereDelegate>delegate;
 .......

在 ViewControllerB.m 中

- (void)viewDidLoad
{
     ......

     BOOL booleanFiere =YES;
    [self.delegate addItemViewController:self withBool:booleanFiere];
 }

在 ViewControllerA.h 中

@interface ViewControllerA: UIViewController <detailProgrammFiereDelegate>

在 ViewControllerA.m 中

-(void)addItemViewController:(DetailProgrammFiere *)programmFiere withBool:(BOOL)booleanFiere{

     //after pressing back button of viewControllerB not enter into this method. Why?

    if (booleanFiere){ //is already true before opening the ViewControllerB. Why?
        [self viewDidLoad];
    }
}
........

 -(void)getInformationsFiere:(id)sender{ //method that open ViewControllerB

     ViewControllerB * detailFiere =[[ViewControllerB alloc]initWithNibName:@"ViewControllerB~iPhone" bundle:nil];


    detailFiere.delegate =self;


    [self.navigationController pushViewController:detailFiere animated:YES];

   }

在打开 ViewControllerB 之前布尔值已经为真,这不应该发生。

4

1 回答 1

1

如果要从B返回A时传递参数,则不应将调用委托方法放在viewDidLoad中。B 的 viewDidLoad 在 B 是 alloc 和 init 的时候会被调用,但是当 B 被 pop B 返回到 A 时不会被调用。这也是为什么在 B 出现之前,A 的 booleanFiere 已经是 YES 的原因。

你可以把

    [self.delegate addItemViewController:self withBool:booleanFiere];

就在 B 的 [self.navigationController popViewControllerAnimated:YES] 之前,而不是在 B 的 viewDidLoad 中。所以A的-addItemViewController:会在返回的时候调用

于 2012-12-12T09:47:47.530 回答