iOS socket 通讯 客户端和服务端(CocoaAsyncSocket 的用法)

CocoaAsyncSocket 用法:

客户端:
#import "ViewController.h"
#import "GCDAsyncSocket.h"

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UITextField *ipField;
@property (weak, nonatomic) IBOutlet UITextField *portField;
@property (weak, nonatomic) IBOutlet UITextField *sendMsgField;
@property (weak, nonatomic) IBOutlet UITextView *reciveMsgTextView;


//客户端socket
@property (nonatomic) GCDAsyncSocket *clientSocket;

@end

@implementation ViewController


- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

//1、初始化
self.ipField.text = @"172.16.1.6";
self.clientSocket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];
}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

- (IBAction)linkButtonAction:(id)sender {
//连接服务器
[self.clientSocket connectToHost:self.ipField.text onPort:self.portField.text.integerValue withTimeout:-1 error:nil];
}
- (IBAction)sendMsgButtonAction:(id)sender {
NSData *data = [self.sendMsgField.text dataUsingEncoding:NSUTF8StringEncoding];
//withTimeout -1 :无穷大
//tag: 消息标记
[self.clientSocket writeData:data withTimeout:-1 tag:0];
}

- (void)showMessageWithText:(NSString *)text {
self.reciveMsgTextView.text = [self.reciveMsgTextView.text stringByAppendingFormat:@"%@\n", text];
}

#pragma mark - GCDAsynSocket Delegate
- (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(uint16_t)port{
[self showMessageWithText:@"链接成功"];
[self showMessageWithText:[NSString stringWithFormat:@"服务器IP : %@", host]];
[self.clientSocket readDataWithTimeout:-1 tag:0];
}

//收到消息
- (void)socket:(GCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{
NSString *text = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
[self showMessageWithText:text];
[self.clientSocket readDataWithTimeout:-1 tag:0];
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
[self.view endEditing:YES];
}

@end

  

 

服务端:
#import "ViewController.h"
#import "GCDAsyncSocket.h"

@interface ViewController ()<GCDAsyncSocketDelegate>

/** 端口号 **/
@property (weak, nonatomic) IBOutlet UITextField *portField;

/** 发送消息 **/
@property (weak, nonatomic) IBOutlet UITextField *sendMsgField;

/** 连接端口号按钮 **/
@property (weak, nonatomic) IBOutlet UIButton *linkPortButton;

/** 发送消息按钮 **/
@property (weak, nonatomic) IBOutlet UIButton *sendMsgButton;

/** 接受消息 **/
@property (weak, nonatomic) IBOutlet UITextView *reciveMsgTextView;



//服务器socket(开放端口,监听客户端socket的链接)
@property (nonatomic) GCDAsyncSocket *serverSocket;

//保护客户端socket
@property (nonatomic) GCDAsyncSocket *clientSocket;

@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

//初始化服务器socket
self.serverSocket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.


}

/** 连接端口 **/
- (IBAction)linkPortButtonAction:(id)sender {
NSError *error = nil;
BOOL result = [self.serverSocket acceptOnPort:self.portField.text.integerValue error:&error];
if (result && error == nil) {
//开放成功
[self showMessageWithText:@"连接成功"];
}
}


/** 发消息 **/
- (IBAction)sendMsgButtonAction:(id)sender {
NSData *data = [self.sendMsgField.text dataUsingEncoding:NSUTF8StringEncoding];
//withTimeout -1: 一直等
//tag:消息标记
[self.clientSocket writeData:data withTimeout:-1 tag:0];
}

- (void)showMessageWithText:(NSString *)text {
self.reciveMsgTextView.text = [self.reciveMsgTextView.text stringByAppendingFormat:@"%@\n",text];
}

#pragma mark - 服务器socket Delegate
- (void)socket:(GCDAsyncSocket *)sock didAcceptNewSocket:(GCDAsyncSocket *)newSocket{
//保存客户端的socket
self.clientSocket = newSocket;
[self showMessageWithText:@"链接成功"];

[self showMessageWithText:[NSString stringWithFormat:@"服务器地址:%@ -端口: %d", newSocket.connectedHost, newSocket.connectedPort]];
[self.clientSocket readDataWithTimeout:-1 tag:0];
}

//收到消息
- (void)socket:(GCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{
NSString *text = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
[self showMessageWithText:text];
[self.clientSocket readDataWithTimeout:-1 tag:0];
}


@end

  

 gitHub 地址:https://github.com/lc081200/cocoaAsynSocketExample

 

转载于:https://www.cnblogs.com/saytome/p/7715152.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值