美文网首页
NSURL的常用属性

NSURL的常用属性

作者: 哥只是个菜鸟 | 来源:发表于2021-07-02 15:55 被阅读0次
        NSString *urlstr = @"http://qq.test.com:666/test?index=0&name=haha";
        NSURL *url = [NSURL URLWithString:urlstr];
        NSLog(@"scheme:%@", url.scheme);                    //协议 http
        NSLog(@"host:%@", url.host);                        //域名 qq.test.com
        NSLog(@"port:%@", url.port);                        //端口 666
        NSLog(@"absoluteString:%@", url.absoluteString);    //完整的url字符串:
        NSLog(@"relativePath: %@", url.relativePath);       //相对路径 /test
        NSLog(@"path: %@", url.path);                       //路径 /test
        NSLog(@"pathComponents:%@", url.pathComponents);    //("/",test,"index.php")
        NSLog(@"Query:%@", url.query);                      //参数 index=0&name=haha
    

    相关文章

      网友评论

          本文标题:NSURL的常用属性

          本文链接:https://www.haomeiwen.com/subject/aozeultx.html