如何在 NSStream 中使用委托?
Posted
技术标签:
【中文标题】如何在 NSStream 中使用委托?【英文标题】:How to use delegate in NSStream? 【发布时间】:2012-08-27 15:47:11 【问题描述】:我是 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;
【问题讨论】:
【参考方案1】:运行循环运行的时间不够长,无法调用委托方法。
添加:
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2.0]];
在您打开信息流之后。这仅在没有 GUI 的程序中是必需的 - 否则运行循环将为您旋转。
如果您想在退出之前绝对确定 stream:handleEvent:
已被调用,请在该方法中设置(全局)标志并将 runUntilDate:
放入测试标志的 while
循环中:
while( !delegateHasBeenNotified )
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.5]];
【讨论】:
以上是关于如何在 NSStream 中使用委托?的主要内容,如果未能解决你的问题,请参考以下文章
NSStream 委托 NSStreamEventHasBytesAvailable 未被调用