我是Objective-C的新手。我正在尝试学习如何使用NSStream
。我刚刚使用Apple支持的简单代码。此代码应该从我的桌面中的文件打开一个流,并在iStream调用委托时显示一条简单的消息。在代码的最后,我可以看到状态是正确的,但代理永远不会被调用。我错过了什么?
#import <Foundation/Foundation.h>
@interface MyDelegate: NSStream <NSStreamDelegate>{
}
- (void)stream:(NSStream *)stream handleEvent:(NSStreamEvent)eventCode ;
@end
@implementation MyDelegate
- (void)stream:(NSStream *)stream handleEvent:(NSStreamEvent)eventCode {
NSLog(@"############# in DELEGATE###############");
}
@end
int main(int argc, const char * argv[])
{
@autoreleasepool {
MyDelegate* myDelegate=[[MyDelegate alloc]init];
NSInputStream* iStream= [[NSInputStream alloc] initWithFileAtPath:@"/Users/Augend/Desktop/Test.rtf"];
[iStream setDelegate:myDelegate];
[iStream scheduleInRunLoop:[NSRunLoop currentRunLoop]
forMode:NSDefaultRunLoopMode];
[iStream open];
NSLog(@" status:%@",(NSString*) [iStream streamError]);
}
return 0;
}
答案 0 :(得分:7)
运行循环的运行时间不够长,无法调用委托方法。
添加:
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2.0]];
打开流后立即。这仅在没有GUI的程序中是必需的 - 否则运行循环将为您旋转。
如果您想在退出之前完全确定已调用stream:handleEvent:
,请在该方法中设置一个(全局)标志,并将runUntilDate:
放入要测试的while
循环中国旗:
while( !delegateHasBeenNotified ){
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.5]];
}