3

GCDAsyncSocketクラスを使用してデバイスに接続しようとしていますが、問題が発生しています。接続されているかどうかは通知されないようですが、接続に失敗したことも通知されません。

これが私の.hファイルです

#import <Foundation/Foundation.h>
#import "GCDAsyncSocket.h"

@interface SocketTestClass : NSObject <GCDAsyncSocketDelegate>
{
    GCDAsyncSocket* socket;
}

@end

これが私の.mファイルです

@implementation SocketTestClass

- (void)dealloc
{
    [self disconnect];
}

- (void)connect
{
    NSLog(@"Ready to create socket");

    socket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];

    NSError* error = Nil;
    if (![socket connectToHost:@"192.168.1.200" onPort:80 withTimeout:10 error:&error])
    {
        NSLog(@"Failed to create socket");
    }
}

- (void)disconnect
{
    if ([socket isConnected])
    {
        [socket disconnect];
    }
}

- (void)socket:(GCDAsyncSocket *)sock
didAcceptNewSocket:(GCDAsyncSocket *)newSocket
{
    NSLog(@"Socket did accept new socket");
}

- (void)socket:(GCDAsyncSocket *)sock
didConnectToHost:(NSString *)host
          port:(uint16_t)port
{
    NSLog(@"Socket did connect to host on port");
}

- (void)socket:(GCDAsyncSocket *)sock
   didReadData:(NSData *)data
       withTag:(long)tag
{
    NSLog(@"Socket did read data with tag");
}

- (void)socket:(GCDAsyncSocket *)sock
didReadPartialDataOfLength:(NSUInteger)partialLength
           tag:(long)tag
{
    NSLog(@"Socket did read partial data of length");
}

- (void)socket:(GCDAsyncSocket *)sock didWriteDataWithTag:(long)tag
{
    NSLog(@"Socket did write data with tag");
}

- (void)socket:(GCDAsyncSocket *)sock
didWritePartialDataOfLength:(NSUInteger)partialLength
           tag:(long)tag
{
    NSLog(@"Socket did write partial data of length");
}

- (void)socketDidCloseReadStream:(GCDAsyncSocket *)sock
{
    NSLog(@"Socket did close read stream");
}

- (void)socketDidDisconnect:(GCDAsyncSocket *)sock
                  withError:(NSError *)err
{
    NSLog(@"Socket did disconnect with error");
}

- (void)socketDidSecure:(GCDAsyncSocket *)sock
{
    NSLog(@"Socket did secure");
}

@end

ビューコントローラからこのクラスのconnectメソッドを呼び出しますが、コンソールに出力されるのは次のとおりです。

Ready to create socket

注:私はすべてのデリゲートを実装しGCDAsyncSocket、を介してコンソールにすべて書き込みNSLogます。

「ソケットがポート上のホストに接続しました」というメッセージまたは「ソケットがエラーで切断されました」というメッセージが表示されない理由について何か考えはありますか?

4

0 に答える 0