gpt4 book ai didi

objective-c - RestKit iOS : Simple request error

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:33:03 25 4
gpt4 key购买 nike

我是 iOS 开发的新手,我目前正在使用 ARC 测试 RestKit 0.9.3 for iOS 和 xCode 4.2,我遇到了一些简单的获取请求问题。

我正在学习本教程:https://github.com/RestKit/RestKit/wiki/Tutorial-%3A-Introduction-to-RestKit

我尝试向 TouchUpInsideUIButton 上的网络服务发送一个简单的获取请求。

但我收到“EXC_BAD_ACCESS”:[6373:fb03] *** -[DataAccess respondsToSelector:]: message sent to deallocated instance 0x8275160

应用程序在 RKRequest.m 文件的这一行停止:

if ([self.delegate respondsToSelector:@selector(requestDidStartLoad:)]) {
[self.delegate requestDidStartLoad:self];
}

我的代码:

MyViewController.m :

- (IBAction)myAction:(id)sender {
DataAccess *data = [DataAccess alloc];
[data sendRequests];
}

数据访问.m:

@implementation DataAccess

-(void)sendRequests {

[RKClient clientWithBaseURL:SERVER_URL username:SERVER_USERNAME password:SERVER_PASSWORD];
[[RKClient sharedClient] get:@"/myDistantAction" delegate:self];
}

#pragma mark - Delegate

-(void)request:(RKRequest *)request didLoadResponse:(RKResponse *)response {

if ([response isOK]) {
NSLog(@"Retrieved : %@", [response bodyAsString]);
}
}

@end

我在网上搜索过,没有找到解决办法

有人可以帮助我吗?

谢谢,

最佳答案

这可能是一种解决方案。我更改了您的代码以使用单例。我认为问题是当调用回调函数时因为他不能再访问实例。

数据访问.m:

@implementation DataAccess

static singleton *DataAccess= nil;

+ (DataAccess*)getInstance
{
if (singleton == nil) {
singleton = [[DataAccess alloc] init];
}
return singleton;
}

-(void)sendRequests {

[RKClient clientWithBaseURL:SERVER_URL username:SERVER_USERNAME password:SERVER_PASSWORD];
[[RKClient sharedClient] get:@"/myDistantAction" delegate:self];
}

#pragma mark - Delegate

-(void)request:(RKRequest *)request didLoadResponse:(RKResponse *)response {

if ([response isOK]) {
NSLog(@"Retrieved : %@", [response bodyAsString]);
}
}

@end

MyViewController.m:

- (IBAction)myAction:(id)sender {
DataAccess *data = [DataAccess getInstance];
[data sendRequests];
}

关于objective-c - RestKit iOS : Simple request error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9254303/

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