• iphone:URL initWithString 返回为空


    Parameters

     

    URLString

    The string with which to initialize the NSURL object. This string must conform to URL format as described in RFC 2396. This method parses URLString according to RFCs 1738 and 1808.

     

     Discussion

    This method expects URLString to contain any necessary percent escape codes, which are ‘:’, ‘/’, ‘%’, ‘#’, ‘;’, and ‘@’. Note that ‘%’ escapes are translated via UTF-8.

    所以URLString中有空格的要变成:%20

    [urlstring stringByReplacingOccurrencesOfString:@" "withString:@"%20"]]

    然后还要进行编码转换

    str=[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

     

     

     

  • 相关阅读:
    顾问和注解
    正则
    GitHub 的简单使用
    JavaScript变态题目
    常用的Javascript设计模式
    HTML5 本地裁剪上传图片
    webpack 打包
    详解js闭包
    常用的Javascript设计模式
    call appiy
  • 原文地址:https://www.cnblogs.com/mybkn/p/2519406.html
Copyright © 2020-2023  润新知