假设我有 www.GOOgle.com/.......
我想把它改成 www.google.com/....
并保持 url 的其余部分不变。
我试过了NSURLComponents
,但没有用。
// I am taking input from textfield and making the nsurl.
NSURLComponents *components = [NSURLComponents componentsWithString: _textfield.text]; // input from textfield
[[components host] lowercaseString];
NSURL *urlin = [components URL]; //but this gives, www.GOOgle.com
任何线索表示赞赏。