1

在 iPhone 的应用程序中进行 AS(自治系统)查找的最佳方法是什么?

看起来 iPhone 应用程序没有 root 访问权限,所以我不能从应用程序中使用system()or调用“dig”或“whois” popen()

4

1 回答 1

0

1)创建一个头文件“whois.h”,内容如下:

extern int whois(int argc, char *argv[]);

2) 将函数名称从 main 更改为任意名称:

int main(int argc, char *argv[]) {

到:

int whois(int argc, char *argv[]) {

3) 在你的 object-c .m 文件中,导入 whois.h

现在您可以调用该函数:

谁是();

于 2013-03-18T21:54:29.733 回答