gpt4 book ai didi

ios - 更改 NSURL 的方案

转载 作者:IT王子 更新时间:2023-10-29 08:00:04 25 4
gpt4 key购买 nike

是否有一种简单的方法来更改 NSURL 的方案?我确实意识到 NSURL 是不可变的。如果 Security.framework 已链接,我的目标是将 URL 方案更改为“https”,如果框架未链接,则更改为“http”。我知道如何检测框架是否已链接。

如果 URL 没有参数(例如“?param1=foo&param2=bar”),这段代码可以很好地工作:

+(NSURL*)adjustURL:(NSURL*)inURL toSecureConnection:(BOOL)inUseSecure {
if ( inUseSecure ) {
return [[[NSURL alloc] initWithScheme:@"https" host:[inURL host] path:[inURL path]] autorelease];
}
else {
return [[[NSURL alloc] initWithScheme:@"http" host:[inURL host] path:[inURL path]] autorelease];
}
}

但是如果 URL 确实有参数,[inURL path] 会丢弃它们。

除了自己解析 URL 字符串(我可以做,但我想尝试不做)之外,还有什么建议吗?我做了什么才能将带有 http 或 https 的 URL 传递给此方法。

最佳答案

更新的答案

NSURLComponents 是你的 friend 。您可以使用它来将 http 方案替换为 https。唯一需要注意的是 NSURLComponents 使用 RFC 3986 而 NSURL 使用较旧的 RFC 1738 和 1808,因此在边缘情况下存在一些行为差异,但您极不可能命中这些情况(并且 NSURLComponents 无论如何都有更好的行为)。

NSURLComponents *components = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:YES];
components.scheme = inUseSecure ? @"https" : @"http";
return components.URL;

原始答案

为什么不做一些字符串操作呢?

NSString *str = [url absoluteString];
NSInteger colon = [str rangeOfString:@":"].location;
if (colon != NSNotFound) { // wtf how would it be missing
str = [str substringFromIndex:colon]; // strip off existing scheme
if (inUseSecure) {
str = [@"https" stringByAppendingString:str];
} else {
str = [@"http" stringByAppendingString:str];
}
}
return [NSURL URLWithString:str];

关于ios - 更改 NSURL 的方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14393016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com