0

我有一个名为 dateSelectViewController 的方法在我的 .h 文件中声明为协议:

@class DateSelectViewController;
@protocol DateSelectViewControllerDelegate 

- (void)dateSelectViewController:(DateSelectViewController *)sender
                         theDate:(id)stringDate;

@end

在协议下方,我声明了一个代表:

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

在实现文件中,我合成了委托,当在我的视图中按下完成按钮时,我向委托发送一条消息:

- (IBAction)DonePressed:(id)sender {
    NSDate *chosen = [datePicker date];
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

    [formatter setDateFormat:@"MM/dd/yyyy"];
    NSString *formatedDate = [formatter stringFromDate:chosen];

    //sending a message to the delegate
    [self.delegate dateSelectViewController:self theDate:formatedDate];

    [self.navigationController popViewControllerAnimated:YES];
}

在被委派给的 .h 文件中,我正在导入委派者 .h 文件。在 .m 文件中,我符合协议:

@interface MakePlantTVC ()<DateSelectViewControllerDelegate>
- (void)dateSelectViewController:(DateSelectViewController *)sender
                     theDate:(id)stringDate
{
    self.displayDate.text = stringDate;
    NSLog(@"delegate working");
}

出于某种原因,这完全有效。当在我的委托人类中按下完成按钮时,该按钮会按预期执行并弹出视图控制器,但就像消息永远不会发送给委托人一样。起初我以为我可以向 nil 发送消息,但它的类型为 id,所以情况不应该如此。为什么没有发送消息?

4

1 回答 1

6

想到了几件事

  • 你设置委托了吗?这听起来可能很愚蠢,但当一个代表不工作时,90% 的时间是因为我忘记或丢失了 IB 连接。
  • 你的弱对象过期了吗?弱对象是 nil'ed - 因此您正在对“无”执行委托操作 - 也许您想要更多保留或NSNotification

我与代表一起练习的其他可能有用的事情

  • 使用基于断言的编程?当您拥有具有所需功能的协议时,值得断言,即:NSAssert(delegate, @"Error, delegate not set!");
  • 检查代理是否响应选择器
  • 使用 GCD 异步调度委托调用,即:

    dispatch_async(dispatch_get_main_queue(), ^{
      if ([delegate_ respondsToSelector:@selector(updateUI:)]) 
        [delegate_ updateUI:self];
    });
    

希望这可以帮助!

于 2012-04-25T12:49:10.997 回答