0

我需要从我的可可应用程序向我的 firebreath 项目发送一个分布式通知,所以我需要在我的 firebreath 代码中创建一个观察者和一个选择器。我将类扩展名更改为“.mm”以支持 Objective-c 代码。我的firebreath项目中已经有objective-c代码并且工作正常。但是当我尝试创建一个观察者时,我的代码中出现了错误,我不知道如何解决它。

这是我的 firebreath 项目的源代码:

//This is the selector 
- (void)receiveAppConfirmationNotification:(NSNotification*)notif{
    //The application is alive.
    NSLog(@"The application is alive!!!!!!!!");
}

std::string MyProjectAPI::bgp(const std::string& val)
{       
    //Add an observer to see if the application is alive.
    NSString *observedObject = @"com.test.net";
    NSDistributedNotificationCenter *center = [NSDistributedNotificationCenter defaultCenter];
    [center addObserver: self
               selector: @selector(receiveAppConfirmationNotification:)
                   name: @"App Confirmation Notification"
                 object: observedObject];
}

这是我的错误:

...firebreath/../projects/MyProject/MyProjectAPI.mm:133:错误:“-”令牌之前的预期不合格 ID。这是我定义“receiveAppConfirmationNotification”方法的那一行。

...firebreath/../projects/MyProject/MyProjectAPI.mm:157:错误:“self”未在此范围内声明。

如何定义选择器?如何将观察者添加为类本身?

4

2 回答 2

0

选择器必须是 Objective-C++ 类的一部分;你不能只是把它扔到那里,它应该在类的@implementation 部分。

为了尽可能保持兼容性,我建议将 @interface 和 @implementation 部分都放在 .mm 文件中,以便 .h 文件与 C++ 兼容,但这取决于您;如果你这样做会更容易。如果需要,您可以使用 pimpl 模式来帮助解决此问题。

于 2011-12-30T19:15:54.820 回答
0

我做了接口和实现,代码没有错误。问题是我能够向我的可可应用程序发送通知,但我无法从应用程序接收通知到插件。这是头文件:

#ifdef __OBJC__

@interface FBMyProject : NSObject {
    NSString *parameter_val;
}

@property (nonatomic, retain) NSString *parameter_val;

-(void) receiveAppConfirmationNotification:(NSNotification*)notif;

@end
#endif

class MyProjectAPI : public FB::JSAPIAuto
{
    public:
    ...
}
#endif

这是我的源文件:

@implementation FBMyProject
@synthesize parameter_val;

  -(void) receiveAppConfirmationNotification:(NSNotification*)notif{
       //The application is alive.
       NSLog(@"The application is alive!!!!!!!!");
   }

  - (id)init
  {
      self = [super init];
      if (self) {
          NSString *observedObject = @"test.com";
          NSDistributedNotificationCenter *center = [NSDistributedNotificationCenter defaultCenter];
          [center addObserver: self
                     selector: @selector(receiveAppConfirmationNotification:)
                         name: @"App Confirmation Notification"
                       object: observedObject];

      }
      return self;
  }

  - (void)dealloc
  {
      // unregister notification
      [[NSDistributedNotificationCenter defaultCenter] removeObserver: self 
                                                                 name: @"App Confirmation Notification"
                                                               object: nil];

      [self.parameter_val release];
      [super dealloc];
  }
@end



std::string MyProjectAPI::bgp(const std::string& val)
{       
    FBMyProject *my_project = [[FBMyProject alloc] init];
    my_project.parameter_val = [NSString stringWithUTF8String:val.c_str()];
    [my_project release];

    return val;
}

这是我来自可可应用程序的来源:

NSDictionary *data = [NSDictionary dictionaryWithObjectsAndKeys:
                      @"OK", @"confirmation", 
                      nil];

//Post the notification
NSString *observedObject = @"test.com";
NSDistributedNotificationCenter *center = [NSDistributedNotificationCenter defaultCenter];
[center postNotificationName: @"App Confirmation Notification"
                      object: observedObject
                    userInfo: data
          deliverImmediately: YES];
于 2012-01-03T13:45:15.573 回答