长期看守,第一次任满。
我把服务器电能模块变成一个全方位的模块,容易,但很难听从该代表的话。 我也看到了几个问题,但答案都没有确定我的问题。
服务器电能作为一项议定书设立。 因此,在Login.m创建了一个服务器Connection物体,向服务器发出呼吁,然后在Login增加代用法,以便在出现错误或发生错误时,由服务器Connection像以下那样使用。
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
if( [self.delegate respondsToSelector:@selector(connectionDidFinish:)]) {
NSLog(@"DOES RESPOND");
[self.delegate connectionDidFinish:self];
} else {
NSLog(@"DOES NOT RESPOND");
}
self.connection = nil;
self.receivedData = nil;
}
它总是“没有反应”。 我曾尝试过CFRun Loop(低)小trick,但依然没有工作。
- (IBAction)processLogin:(id)sender {
// Hide the keyboard
[sender resignFirstResponder];
// Start new thread
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// Acutally call the server
[self authenticate];
// Prevent the thread from exploding before we ve got the data
CFRunLoopRun();
// End thread
[pool release];
}
I copied the 聚氯乙烯(URLCache demo)的产量相当高,并且多次比较,但可能发现任何差异。
任何帮助都将受到高度赞赏。