2

演習として簡単な Web ブラウザを作成しています。

-(IBAction)go:(id)sender {
NSString *query = [_urlField.text stringByReplacingOccurrencesOfString:@" " withString:@"+"];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@",query]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[_webView loadRequest:request];
}

webView の読み込み中に UIActivityIndi​​cator を追加する方法を知りたいです。

2 番目の質問:

ユーザーが入力した http:// を削除することはできますか? 次のようにPHPでこれを行うことができます。

if(strpos($URL, "http://") !== false)

Objective C でどのように使用できますか?

助けてくれてありがとう。

4

1 に答える 1

2

最初の質問については、この投稿をチェックしてください。

そして2番目:

NSString* urlWithoutProtocol = [urlWithProtocol stringByReplacingOccurrencesOfString:@"http://" withString:@""];
于 2012-11-17T18:28:25.190 に答える