开发者

How to create a method for posting a notification in Objective-C?

How to create a method for posting a notification through the NSNotificationCenter and then call the method through applicationDidFinishLauching main method without any (IBAction) . I just wanted to send only a message.I also dont want the postNotification to be placed in applicationDidFinishLaunching method.

-(void)applicationDidFinishLaunching
{

 event=[[SomeCl开发者_Python百科ass alloc]init];

}

-(void)sendEvent:(id)sender
{
     postNotificationName:... object:---
}

Now i where i need to call this sendEvent method in my program. How to do it?


The -postNotification method on NSNotificationCenter is what you're looking for:

- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
   // ...
   [self postNotification];
}

- (void)postNotification
{
   [[NSNotificationCenter] defaultCenter] postNotification:@"Notification"];
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜