gpt4 book ai didi

ios - 外部附件流在 100% 的时间都不起作用

转载 作者:可可西里 更新时间:2023-11-01 04:02:10 25 4
gpt4 key购买 nike

输入和输出流始终打开,并且使用正确的 NSStreamEvent 代码 (NSStreamEventOpenCompleted) 调用相应的委托(delegate)方法。但是,在某些 openSession 尝试中,流已成功打开,但它们不起作用。有时我只能写入输出流,但无法从输入流中读取。有时我不能读或写。

有没有人遇到过这个问题或者知道为什么会这样?任何帮助表示赞赏。谢谢。

这里是一些相关的代码

- (BOOL)openSession
{
_session = [[EASession alloc] initWithAccessory:_selectedAccessory
forProtocol:_protocolString];

if (!_session)
return false;

[_selectedAccessory setDelegate:self];
[[_session inputStream] setDelegate:self];
[[_session outputStream] setDelegate:self];

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^ {

[[_session inputStream] scheduleInRunLoop:[NSRunLoop currentRunLoop]
forMode:NSDefaultRunLoopMode];
[[_session inputStream] open];

[[_session outputStream] scheduleInRunLoop:[NSRunLoop currentRunLoop]
forMode:NSDefaultRunLoopMode];
[[_session outputStream] open];

[[NSRunLoop currentRunLoop] run];
});

return true;
}

- (void)setupControllerForAccessory:(EAAccessory *)accessory withProtocolString:(NSString *)protocolString
{
_selectedAccessory = accessory;
_protocolString = [protocolString copy];
}

/**
* There is something weird happening here too, this always get called twice when an accessory
* gets connected. Once without a protocol string and once with a protocol string. I just
* ignore the one without a protocol string.
*/
- (void)accessoryConnected:(NSNotification *)notification
{
EAAccessory *connectedEA = [notification.userInfo objectForKey:@"EAAccessoryKey"];

// Check to see if the connected EA has a protocol string
if ([[connectedEA protocolStrings] count] == 0)
return;

[self setupControllerForAccessory:connectedEA
withProtocolString:[[connectedEA protocolStrings] objectAtIndex:0]];
[self openSession];
}

- (void)stream:(NSStream *)aStream handleEvent:(NSStreamEvent)eventCode
{
switch (eventCode) {
case NSStreamEventOpenCompleted:
// This case always gets called twice, once for input and once for output
NSLog(@"stream %@ opened", aStream);
break;
case NSStreamEventHasBytesAvailable:
break;
case NSStreamEventHasSpaceAvailable:
break;
case NSStreamEventErrorOccurred:
break;
case NSStreamEventEndEncountered:
[self closeSession];
break;
default:
break;
}
}

- (void)closeSession
{
[[_session inputStream] close];
[[_session inputStream] removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[[_session inputStream] setDelegate:nil];

[[_session outputStream] close];
[[_session outputStream] removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[[_session outputStream] setDelegate:nil];

_session = nil;
_selectedAccessory = nil;
_protocolString = nil;
}

最佳答案

我无法对您的问题添加评论(分数较少!),但我有一些提示,因为我的团队也面临着同样的问题,即使用流时断时续。我们已经向网络团队提出了一个错误。如果可能尝试记录错误,您很可能会在调试器控制台中收到错误“流意外结束”。这可能会出现也可能不会出现。

这是苹果文档中提供的类似代码,它也有同样的问题。 https://developer.apple.com/library/ios/samplecode/SimpleURLConnections/Listings/PostController_m.html#//apple_ref/doc/uid/DTS40009245-PostController_m-DontLinkElementID_12

关于ios - 外部附件流在 100% 的时间都不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22178937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com