作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 NSURL 类引用中提供的方法解析 URL 以获取方案、路径和参数。但是,我注意到,如果我以这种方式构建 url(方案后没有双斜线):
NSString *urlString = @"customScheme:myPath?parameter=hello&other_parameter=12";
NSURL *url = [NSURL URLWithString:urlString];
path
query
NSString *urlString = @"customScheme://myPath?parameter=hello&other_parameter=12";
NSURL *url = [NSURL URLWithString:urlString];
最佳答案
这些方法在 Apple 的文档中有非常清楚的记录:
path
Returns the path of a URL conforming to RFC 1808.
- (NSString *)path
The path of the URL, unescaped with the
stringByReplacingPercentEscapesUsingEncoding:
method. If the receiver does not conform to RFC 1808, returnsnil
.
<scheme>://<net_loc>/<path>;<params>?<query>#<fragment>
mailto:
URL 之类的,你必须使用除
NSURL
以外的东西。去做吧。
关于url - 当方案没有双斜杠时无法抓取 NSURL 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12223462/
我是一名优秀的程序员,十分优秀!