-1

iOS アプリを使用して、Web サイト (UIWebview) にログイン (2 つの UITextfields ユーザー名/パスワード) したいと考えています。どうすればこれを行うことができますか?どんな提案やドキュメントも素晴らしいでしょう。

4

1 に答える 1

1

UIWebView で JavaScript を実行して、ユーザー名とパスワードを自動入力し、フォームを送信できます。

コードは次のようになります

//autofill the form
[webView stringByEvaluatingJavaScriptFromString: @"document.formName.username.value = 'username'"];
[webView stringByEvaluatingJavaScriptFromString: @"document.formName.password.value = 'password'"];
[webView stringByEvaluatingJavaScriptFromString: @"document.formName.submit()"];

注: formName: はフォーム名です username: はユーザー名テキストの ID です password: はパスワード テキストの ID です

于 2013-06-29T18:59:13.933 に答える