- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在使用 NSFileHandle 的 readInBackgroundAndNotify 方法在日志文件更新时获取通知。
我有以下代码:
- (void)startReading
{
NSString *logPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Logs/MyTestApp.log"];
NSFileHandle *fh = [NSFileHandle fileHandleForReadingAtPath:logPath];
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
[notificationCenter addObserver:self
selector:@selector(getData:)
name:NSFileHandleReadCompletionNotification
object:fh];
[fh readInBackgroundAndNotify];
}
- (void) getData: (NSNotification *)aNotification
{
NSLog(@"notification received");
}
但是,选择器永远不会被调用,也不会收到通知。
最佳答案
startReading
以确保调用它。fh
。我的猜测是它是nil
(很可能是因为您还没有创建 MyTestApp.log)。关于objective-c - NSFileHandle readInBackgroundAndNotify 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1324152/
我正在使用 NSFileHandle 从套接字读取数据。这就是我创建 filehandle 的方式: filehandle = [[NSFileHandle alloc] initWithFileDe
您好,我正在使用 NSFileHandle 的 readInBackgroundAndNotify 方法在日志文件更新时获取通知。 我有以下代码: - (void)startReading {
我通过 NSTask 调用各种命令行工具。这些工具可能会运行几秒钟,并不断地将文本输出到stdout。最终,该工具将自行终止。我的应用使用 readInBackgroundAndNotify 异步读取
我正在使用 NSFileHandle readInBackgroundAndNotify 从管道读取数据。但在打开应用程序系统状态栏菜单之前,我不会收到 NSFileHandleReadComplet
我正在尝试在后台线程中运行 NSTask 并使用 readInBackgroundAndNotify 在附加到我的窗口(首选项 Pane )的 NSPanel 上的 NSTextview 中显示其输出
我有以下 Obj-C 代码及其日志输出。谁能告诉我为什么我没有从 NSFileHandle 获得任何输出? @implementation AppDelegate - (void)applicatio
我是一名优秀的程序员,十分优秀!