- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是ios新手..
我想使用套接字连接到服务器,我按照给出的教程进行操作 here
这工作正常,但我在主 UI 线程中做所有事情,但是 View 被卡住,直到我得到服务器的响应...所以我在 google 上搜索了一下,发现 ios 中的 GCD 的概念。 . 所以在我的按钮上单击我调用以下代码...
[SVProgressHUD showWithStatus:@"Processing.."];
[self.view setUserInteractionEnabled:NO];
qt = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(qt, ^{
CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)ip, 54000, &readStream, &writeStream);
inputStream = (NSInputStream *)readStream;
outputStream = (NSOutputStream *)writeStream;
[inputStream setDelegate:self];
[outputStream setDelegate:self];
[inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[inputStream open];
[outputStream open];
NSData *data = [[NSData alloc] initWithData:[pinno dataUsingEncoding:NSASCIIStringEncoding]];
[outputStream write:[data bytes] maxLength:[data length]];
[outputStream close];
});
我正在使用函数处理事件
- (void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent {
NSLog(@"StreamEvent %i",streamEvent);
switch (streamEvent) {
dispatch_async(dispatch_get_main_queue(), ^{[SVProgressHUD dismiss];
});
case NSStreamEventOpenCompleted:
NSLog(@"Stream opened");
break;
case NSStreamEventHasBytesAvailable:
NSLog(@"Stream has byte Avaliable");
if (theStream==inputStream) {
while ([inputStream hasBytesAvailable]) {
uint8_t buffer[1024];
int len;
len = [inputStream read:buffer maxLength:sizeof(buffer)];
if(len>0){
NSString *output = [[NSString alloc] initWithBytes:buffer length:len encoding:NSASCIIStringEncoding];
[self.view setUserInteractionEnabled:YES];
NSLog(@"output %@",output);
}
}
}
break;
case NSStreamEventErrorOccurred:
[self.view setUserInteractionEnabled:YES];
NSLog(@"Can not connect to the host!");
break;
case NSStreamEventEndEncountered:
[self.view setUserInteractionEnabled:YES];
break;
default:
[self.view setUserInteractionEnabled:YES];
NSLog(@"Unknown event");
}
}
使用上面的代码,我收到了对服务器的请求,服务器也发送了成功的响应,但我没有在处理事件方法中收到任何数据,但我没有收到 hasbytesavaliable 事件。我的控制台日志是
2013-07-02 14:06:15.312 Multi[899:1c03] StreamEvent 1
2013-07-02 14:06:15.313 Multi[899:1c03] Stream opened
2013-07-02 14:06:15.313 Multi[899:1c03] StreamEvent 4
2013-07-02 14:06:15.313 Multi[899:1c03] Unknown event
知道我做错了什么......
Edit:Updated Code
在按钮上单击我启动计时器并调用连接方法..
counter=[NSTimer scheduledTimerWithTimeInterval:30.0 target:self selector:@selector(stream:handleEvent:) userInfo:nil repeats:NO];
qt = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(qt, ^{[self connect];});
连接方式:
CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)ip, 54000, &readStream, &writeStream);
inputStream = (NSInputStream *)readStream;
outputStream = (NSOutputStream *)writeStream;
NSRunLoop *loop = [NSRunLoop currentRunLoop];
[inputStream setDelegate:self];
[outputStream setDelegate:self];
[inputStream scheduleInRunLoop:loop forMode:NSDefaultRunLoopMode];
[outputStream scheduleInRunLoop:loop forMode:NSDefaultRunLoopMode];
[inputStream open];
[outputStream open];
NSData *data = [[NSData alloc] initWithData:[pinno dataUsingEncoding:NSASCIIStringEncoding]];
[outputStream write:[data bytes] maxLength:[data length]];
[outputStream close];
[loop run];
流处理事件
- (void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent {
Username.text = @"";
Password.text = @"";
[self disconnect];
if (counter!=nil){
[counter invalidate];
counter=nil;
}
NSLog(@"StreamEvent %i",streamEvent);
switch (streamEvent) {
case NSStreamEventOpenCompleted:
NSLog(@"Stream opened");
break;
case NSStreamEventHasBytesAvailable:
if (theStream==inputStream) {
while ([inputStream hasBytesAvailable]) {
uint8_t buffer[1024];
int len;
len = [inputStream read:buffer maxLength:sizeof(buffer)];
if(len>0){
NSString *output = [[NSString alloc] initWithBytes:buffer length:len encoding:NSASCIIStringEncoding];
NSLog(@"output %@",output);
[SVProgressHUD dismiss];
main = [[Mainmenu alloc]
initWithNibName:@"Mainmenu"
bundle:nil];
// [self.view addSubview:main.view];
[self presentViewController:main animated:NO completion:NO];
}
}
}
dispatch_async(dispatch_get_main_queue(), ^{[SVProgressHUD dismiss];
});
break;
case NSStreamEventErrorOccurred:
NSLog(@"Can not connect to the host!");
dispatch_async(dispatch_get_main_queue(), ^{[self dismiss:@"Cannot connect to host!"];
});
break;
case NSStreamEventEndEncountered:
dispatch_async(dispatch_get_main_queue(), ^{[self dismiss:@"Connection Error"];
});
break;
default:
NSLog(@"Unknown event");
dispatch_async(dispatch_get_main_queue(), ^{[self dismiss:@"Timeout Expired"];
});
}
}
还有断开连接的方法..
-(void) disconnect
{
[inputStream close];
[inputStream removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[outputStream close];
[outputStream removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[inputStream setDelegate:nil];
inputStream = nil;
[outputStream setDelegate:nil];
outputStream = nil;
}
最佳答案
如果您在单独的线程上运行它,那么您必须处理运行循环。你必须调用
[[NSRunLoop currentRunLoop] run];
在正确的时间。
如下更改这部分代码,它肯定会工作:
inputStream = (NSInputStream *)readStream;
outputStream = (NSOutputStream *)writeStream;
NSRunLoop *loop = [NSRunLoop currentRunLoop];
[inputStream setDelegate:self];
[outputStream setDelegate:self];
[inputStream scheduleInRunLoop:loop forMode:NSDefaultRunLoopMode];
[outputStream scheduleInRunLoop:loop forMode:NSDefaultRunLoopMode];
[inputStream open];
[outputStream open];
[loop run];
关于ios - 如何使用 GCD 使用 CFStreams,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17421497/
运行方法时: CFReadStreamSetProperty(theReadStream, kCFStreamPropertySSLSettings (CFDictionaryRef)tlsPacke
我正在尝试与 SNI 建立 TLS 连接。问题是第一个属性设置调用返回 1,表示它已被接受。下面两个返回0,表示没有通过。原因可能是什么? 有时我必须添加自己的证书才能被信任,但据我所知,这将在打开流
我目前正在尝试将 Hello World 从我的 iPhone 发送到运行正常服务器的远程计算机(通过 iPhone 上的 telnet 测试)。 这是我的代码: #import "client.h"
我需要连接到远程主机并使用某种二进制协议(protocol)交换数据。我正在连接: CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)@"wh
是否可以通过 TLS 1.2 在 CFStream 上进行通信?如果是,最好的方法是什么?设置 SSLContext 还是设置 CFReadStreamSetProperty?不幸的是,我找不到任何例
我的 iOS 应用程序包含 2 个版本:服务器和客户端。服务器通过 Bonjour 发布服务并等待客户端。客户端搜索该服务并连接到服务器。之后所有的通信都是通过 CFSockets 实现的。 这是我为
我是ios新手.. 我想使用套接字连接到服务器,我按照给出的教程进行操作 here 这工作正常,但我在主 UI 线程中做所有事情,但是 View 被卡住,直到我得到服务器的响应...所以我在 goog
大家好,感谢收看, 环境说明 我正在开发一个与监听端口 2000 的 arduino(服务器,用于所有实际目的)通信的应用程序。连接到 arduino 是通过临时网络完成的,因此“服务器”是 169.
我正在尝试使用 CFStream 进行简单的 HTTP 通信,但是使用下面的代码,即使我提供了无效的 URL (wwwww.yahoo.com),我仍然可以获得连接成功。 有人能指出我这段代码有什么问
我知道我们可以在给定 SecTrustRef 的情况下使用 SecTrustSetAnchorCertificates()。但是使用 CFStreams,我们只能在握手后才能获得信任对象。一种解决方法
我正在我的 iOS 应用程序中使用 CFStreams 连接到主机名,例如: CFStreamCreatePairWithSocketToHost(NULL, (__bridge CFStringRe
我目前正在开发一个需要通过套接字连接与 MQTT 服务器通信的应用程序。由于 System.Net.Sockets API 在从 WiFi 网络切换到 3G 网络时往往会出现异常(实际上这种情况经常发
我已经在我的 Mac 上设置了一个 squid http 代理,并且我已经设置了我的 Mac 来共享它的无线连接。在我手机上的 wifi 连接信息中,我设置了 HTTP 代理设置: Server: 1
我是 iOS 和 Objective c 的新手......在我的应用程序中,我正在使用 CFStream 建立到我的服务器的套接字连接..问题是当我使用本地 IP (192.168.10.246)
下面的代码有什么问题?我使用 AsyncSocket 连接到 SOCKS 代理并在 onSocketWillConnect 委托(delegate)方法上设置代理设置。如果我省略对 CFReadStr
我使用以下代码在 iOS 应用程序中获取 native 套接字句柄。 CFReadStreamRef readStream = NULL; CFWriteStreamRef writeStream =
我使用 CFStream Socket 向主机发送数据。第一次发送是工作。但是首先,主机接收到的数据总是被分离。例如: 第一次发送: Sender: Recver: 还不错 第二次,第三次..
我需要打开一个 CFStream 套接字连接到具有不受信任的 CA 根的服务器。我有服务器的证书,我可以从中创建一个 SecCertificateRef 结构。问题是如何设置流的属性。 我认为我应该将
我们有一个使用 SSL 的 WebSocket 安全服务器。我们希望在我们的iOS客户端中放置一个客户端SSL证书,以保证与服务器通信时的安全性。 因为我们使用的是 WebSocket,所以在 iOS
我正在使用 CFStream/NSStream 建立 http 连接。我希望能够检测到 SSL 握手在三种情况下失败: 情况 A:服务器不受信任 情况 B:服务器受信任但要求提供客户端证书 案例 C:
我是一名优秀的程序员,十分优秀!