0

我正在尝试向我的 Xcode 项目添加一个 sdk 调用,在他们的文档中,他们说:

“如果您使用这些 API,您可以成为以下事件的观察者:
NOTIFICATION_COMPLETED True/False - 邮件已成功/失败完成。”

我设法做到了这一点:

[[NSNotificationCenter defaultCenter] addObserver: rootViewController
                                         selector: @selector(_NotificationCompleted:)
                                             name: NOTIFICATION_COMPLETED
                                           object: nil];

或者,我认为这是正确的......我不确定最后的 nil 。

无论如何,我不知道如何格式化我的 _NotificationCompleted 函数......

这就是我写的:

void _NotificationCompleted(Boolean WasSuccessfullySent)
{
     if(WasSuccessfullySent)
     {
          // YAY!
     } else {
          // Boo!
     {
}

我究竟做错了什么?

4

1 回答 1

0
- (void)_NotificationCompleted:(NSNotification *)notification {
     // your code goes here.
}
于 2012-04-16T13:41:10.400 回答