如何提取一次URL的方案和主机?

时间:2012-01-17 06:17:24

标签: objective-c nsurl

想象一下这是我的网址

NSURL *theURL=[NSURL URLWithString:@"http://stackoverflow.com/questions/ask"];

我如何只提取:

http://stackoverflow.com

2 个答案:

答案 0 :(得分:7)

[NSString stringWithFormat:@"%@://%@", [theURL scheme], [theUrl host]]

怎么样?

答案 1 :(得分:0)

您是否尝试过[theURL host]