gethostbyname xcode 问题

发布于 2024-10-19 11:56:04 字数 846 浏览 1 评论 0原文

嘿伙计们,我是这方面的新手,但我正在尝试使用 gethostname() 来使用 xcode 和 ipad。我尝试了一些方法,但它们似乎都冻结了。

所以当我这样做时:

host = gethostbyname("website.com");

效果很好。不过,我希望能够从程序内更改网站。

我尝试过:

const char *server = [Website_NSString UTF8String];                    
host = gethostbyname(server);

 

const char *server = [Website_NSString cStringUsingEncoding:NSASCIIStringEncoding];     
host = gethostbyname(server);

 

const char *server[256];        
[Website_NSString getCString:server maxLength:256 encoding:NSASCIIStringEncoding];    
host = gethostbyname(Website_NSString);

他们

host = gethostbyname(Website_NSString);

要么提出警告:从不兼容的指针类型传递'gethostbyname'的参数1,要么根本没有警告。但每次应用程序都会冻结。请帮忙。

Hey guys, I'm new at this stuff, but I'm trying to use gethostname() to work using xcode and the ipad. I've tried a couple of things, but they all seem to freeze up.

So when I just do:

host = gethostbyname("website.com");

that works fine. I'd like to be able to change the website from within the program though.

I've tried:

const char *server = [Website_NSString UTF8String];                    
host = gethostbyname(server);

 

const char *server = [Website_NSString cStringUsingEncoding:NSASCIIStringEncoding];     
host = gethostbyname(server);

 

const char *server[256];        
[Website_NSString getCString:server maxLength:256 encoding:NSASCIIStringEncoding];    
host = gethostbyname(Website_NSString);

and

host = gethostbyname(Website_NSString);

They've either come up with a the warning: Passing argument 1 of 'gethostbyname' from incompatible pointer type, or no warning at all. Still everytime the app just freezes. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖鼻大婶 2024-10-26 11:56:04

我是个白痴。如果我这样做:

char server[256];
[Website_NSString getCString:server maxLength:256 encoding:NSASCIIStringEncoding];
host = gethostbyname(server);

效果很好。

I'm an idiot. If I do:

char server[256];
[Website_NSString getCString:server maxLength:256 encoding:NSASCIIStringEncoding];
host = gethostbyname(server);

It works fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文