想象一下这是我的网址
NSURL *theURL=[NSURL URLWithString:@"http://stackoverflow.com/questions/ask"];
我如何只提取:
http://stackoverflow.com
答案 0 :(得分:7)
[NSString stringWithFormat:@"%@://%@", [theURL scheme], [theUrl host]]
答案 1 :(得分:0)
您是否尝试过[theURL host]
?