m0r*_*mer 10 iphone xcode cocoa-touch objective-c ios
您是否知道所有可能的NSNotifications的完整列表?请告诉我.谢谢.
Ada*_*dam 33
这不是一个非常有用的答案,恕我直言 - 许多通知很难找到,有些是无证件.
当我需要看到实际存在的内容时,我会使用以下内容:
// inside your Application Delegate / main method / similar:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onNotification:) name:nil object:nil];
-(void)onNotification:(NSNotification*)notification
{
NSLog(@"Notification name is %@ sent by %@",[notification name], [[notification object] description] );
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1927 次 |
| 最近记录: |