Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WebView で HTML ボタンの押下を処理するにはどうすればよいですか。ボタンは次のようになります。
<input type="submit" name="mybutton" id="mybuttonid" value="test" />
WebView は、Mac デスクトップ アプリケーションの一部です。
ボタンを処理するという意味がよくわかりませんが、解決策にはおそらく「stringByEvaluatingJavaScriptFromString」を使用する必要があります。
例えば:
[yourWebView stringByEvaluatingJavaScriptFromString:@"document.getElementById('mybuttonid')"];
お役に立てれば :)