zoukankan      html  css  js  c++  java
  • 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];

     

     

     

  • 相关阅读:
    AddParent
    AddChild
    贝塞尔曲线代码
    顶点纹理shader
    抽象方法与抽象类
    Application类
    布局组件
    C#单例和Unity单例
    Unity&UGUI
    Json解析
  • 原文地址:https://www.cnblogs.com/mybkn/p/2519406.html
Copyright © 2011-2022 走看看