iOS开发笔记1-URL重定向 URL redirect


   网络上有一些请求网址,你输入的地址和你最终访问的地址是不同的,这就是因为网址重定向。

   这两天在开发视频直播中发现了一些问题,就是用我们的播放器去播放视频地址,画面是定格的;而播放视频的真实地址(即重定向的地址)时,画面很流畅。http请求进行了302网址跳转。有一些浏览器,例如Safari浏览器,会自动跳转,有一些则不行。所以我需要得到302跳转后的地址,即URL重定向的地址。

   搜集了一些资料,终于解决了。

    参考网址:http://blog.csdn.net/sheldongreen/article/details/7977802

    代码如下:

<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);"></span><pre name="code" class="objc">- (void)viewDidLoad
{
    [super viewDidLoad];
    self.view.backgroundColor=[UIColor blueColor];
    
    NSURL *url=[NSURL URLWithString:@"https://support.apple.com"];
    NSURLRequest *request=[NSURLRequest requestWithURL:url];
    NSURLConnection *connection=[[NSURLConnection alloc] initWithRequest:request delegate:self];
    
    if (!connection) {
        NSLog(@"Fail");
    }
}
- (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response
{
   
    NSString *string1=[[request URL] absoluteString];
    NSString *string2=[[response URL]absoluteString];
    NSLog(@"%@",string1);
    NSLog(@"%@",string2);
     
    NSLog(@"\n=============\n");
    return request;
}


 
<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">得到结果如下:</span>

<pre name="code" class="objc">2014-12-10 11:37:36.992 URLText[4201:60b] https://support.apple.com/
2014-12-10 11:37:36.994 URLText[4201:60b] (null)
2014-12-10 11:37:36.995 URLText[4201:60b] 
=============
2014-12-10 11:37:38.428 URLText[4201:60b] https://www.apple.com/support/
2014-12-10 11:37:38.431 URLText[4201:60b] https://support.apple.com/
2014-12-10 11:37:38.432 URLText[4201:60b] 
=============


 


原地址为:

https://support.apple.com

我需要的地址为:

https://www.apple.com/support




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 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、付费专栏及课程。

余额充值