gpt4 book ai didi

objective-c - Addresponse - 仅添加到内存(XCode)

转载 作者:太空狗 更新时间:2023-10-30 03:54:05 25 4
gpt4 key购买 nike

我正在尝试将我的项目连接到一个 php 文件,但每次都显示:

ADDRESPONSE - ADDING TO MEMORY ONLY

我从来没有见过它。这是我使用的代码:

//Gets the php
FindURL = [NSString stringWithFormat:@"http://domain.com/Myfile.php?username=%@", Username.text];
// to execute php code
URLData = [NSData dataWithContentsOfURL:[NSURL URLWithString:FindURL]];

// to receive the returend value
DataResult = [[NSString alloc] initWithData:URLData encoding:NSUTF8StringEncoding];

NSLog(@"%@",DataResult);

我能做什么?

提前致谢

更新代码:

- (IBAction)UpdateList:(id)sender{



NSURLRequest *request=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://domain.com/Myfile.php"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:15.0];
NSURLConnection *Connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if (Connection) {
//Connect
}else{
//Error
}

}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
DataResult = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

NSLog(@"%@", DataResult);

}

最佳答案

我遇到了同样的问题 - 查看以下内容,这可能对您有所帮助: Log Messages I didn't asked for in Xcode 4.5 with iOS 6.0

到目前为止我还没有找到解决方案,但是因为我现在知道这个日志是由操作系统产生的,所以我不再在我的源中寻找它的来源:)

关于objective-c - Addresponse - 仅添加到内存(XCode),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14579748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com