iosでOSのコマンドを実行することは可能なのでしょうか Mar 18, 2016 javaの場合、下記のような感じでOSのコマンドを実行可能なのですが、 iosから実行する方法はあるのでしょうか。 #NSTaskで!と思ったのですがiosでは無理なようで…。 Runtime runtime = Runtime.getRuntime(); Process proc = null; try{ proc = runtime.exec("ping -c 5 www.google.com"); proc.waitFor(); }catch(Exception e){}