RestKit iOS应用程序根据请求崩溃

时间:2012-11-01 17:14:54

标签: objective-c ios crash ios6 restkit

我对Objective C和RestKit有一个很大的问题。 在应用程序启动时,我想单击一个按钮。 但是,如果我在启动后立即单击按钮,我的应用程序崩溃了。 如果我等待几秒钟,一切正常。

有人有想法吗? 那是我的代码

- (void)sendRequest {
// Perform a simple HTTP GET and call me back with the results
[[RKClient sharedClient] get:@"/user" delegate:self];
}

- (void)request:(RKRequest*)request didLoadResponse:(RKResponse*)response {
  if ([response isSuccessful]) {
    NSLog(@"HTTP status code:     %d", response.statusCode);
    NSLog(@"HTTP status message:  %@", [response localizedStatusCodeString]);
  }
}

客户端将在启动后在“AppDelegate”中创建

RKClient *client = [RKClient clientWithBaseURLString:@"http://192.168.0.6:8080"];
[client setPassword:@"user"];
[client setUsername:@"user"];
[client setAuthenticationType:RKRequestAuthenticationTypeHTTPBasic];
client.requestQueue.showsNetworkActivityIndicatorWhenBusy = YES;

按下按钮后,将调用'sendRequest'Methode。

抱歉,我的英语不是很好。 我希望你能理解我的问题。

1 个答案:

答案 0 :(得分:3)

我有完全相同的问题.. 能用块来解决这个问题

NSURL *baseURL = [[NSURL alloc] initWithString:@"http://your.api.com"];
RKClient *client = [RKClient clientWithBaseURL:baseURL];

RKRequest *request = [client get:@"/method/name" queryParameters:nil delegate:nil];
request.onDidLoadResponse = ^(RKResponse *response) {
    NSLog(@"%@", [response bodyAsString]);
};