iOS开发-AsynSocket

导入AsynSocket库,导入CFNetwork系统库

1.新建single view工程

ViewController.h文件

#import <UIKit/UIKit.h>
#import "AsyncSocket.h"

@interface ViewController : UIViewController <AsyncSocketDelegate> {
    NSMutableArray *_socketArray;
    AsyncSocket *_sendSocket;//发送
    AsyncSocket *_recvSocket;//接收
}
- (IBAction)sendClick:(id)sender;
@property (retain, nonatomic) IBOutlet UITextField *ipField;
@property (retain, nonatomic) IBOutlet UITextField *sendField;
@property (retain, nonatomic) IBOutlet UITextView *msgView;
- (IBAction)conClick:(id)sender;
- (IBAction)sendClick:(id)sender;
@end

2.ViewController.m文件

#import "ViewController.h"

@implementation ViewController
@synthesize ipField;
@synthesize sendField;
@synthesize msgView;

- (void)viewDidLoad
{
    [super viewDidLoad];
	
    //初始化socket数组,存放socket
    _socketArray = [[NSMutableArray alloc] init];
    
    //实例化客户端和服务器socket
    _sendSocket = [[AsyncSocket alloc] initWithDelegate:self];
    _recvSocket = [[AsyncSocket alloc] initWithDelegate:self];
    
    //服务器段开始监听
    [_recvSocket acceptOnPort:5566 error:nil];
}

//服务器端接收到新的socket
- (void)onSocket:(AsyncSocket *)sock didAcceptNewSocket:(AsyncSocket *)newSocket {
    //服务器端将收到的socket存入数组
    [_socketArray addObject:newSocket];
    //开始接收数据
    [newSocket readDataWithTimeout:-1 tag:0];
}

//服务器端接收到信息
- (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag {
    NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    self.msgView.text = [NSString stringWithFormat:@"%@%@:%@\n", self.msgView.text, sock.connectedHost, string];
    [sock readDataWithTimeout:-1 tag:0];//循环
}

//连接
- (IBAction)conClick:(id)sender {
    if (_sendSocket.isConnected) {
        [_sendSocket disconnect];
    }
    [_sendSocket connectToHost:self.ipField.text onPort:5566 withTimeout:30 error:nil];
}

//发送消息
- (IBAction)sendClick:(id)sender {
    NSData *data = [self.sendField.text dataUsingEncoding:NSUTF8StringEncoding];
    [_sendSocket writeData:data withTimeout:30 tag:0];
    self.sendField.text = @"";
}

- (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port
{
    NSLog(@"连接服务器成功");
}

- (void)onSocketDidDisconnect:(AsyncSocket *)sock
{
    NSLog(@"断开连接");
}



- (void)dealloc {
    [ipField release];
    [sendField release];
    [msgView release];
    [ipField release];
    [super dealloc];
}

- (void)viewDidUnload {
    [self setIpField:nil];
    [super viewDidUnload];
}
@end


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
iOS开发中上传图片可以采用以下步骤: 1.选择要上传的图片,可以使用系统提供的UIImagePickerController控制器,或者使用第三方库,例如TZImagePickerController。 2.将选中的图片转换为NSData格式。 3.使用NSURLSession或AFNetworking等网络库,将图片数据上传到服务器。 以下是一个简单的上传图片的示例代码: ``` // 选择图片 UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init]; imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; imagePicker.delegate = self; [self presentViewController:imagePicker animated:YES completion:nil]; // 将选中的图片转换为NSData格式 - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<UIImagePickerControllerInfoKey,id> *)info { UIImage *selectedImage = info[UIImagePickerControllerOriginalImage]; NSData *imageData = UIImageJPEGRepresentation(selectedImage, 0.5); // 上传图片到服务器 NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration]; NSURL *url = [NSURL URLWithString:@"http://example.com/upload.php"]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; request.HTTPMethod = @"POST"; NSURLSessionUploadTask *uploadTask = [session uploadTaskWithRequest:request fromData:imageData completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { // 处理服务器返回的响应 }]; [uploadTask resume]; [picker dismissViewControllerAnimated:YES completion:nil]; } ``` 其中,upload.php是服务器端接收图片的脚本文件。在服务器端,可以使用PHP等语言来处理上传的图片数据。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值