2

我已将我的 RestKit 安装更新到 0.10.2。

我已经按照 github 上的说明进行操作,我的项目构建完美。

但是,每当我尝试使用例如初始化 RKClient 实例时:[RKClient clientWithBaseURL:@"http://127.0.0.1"];我得到以下异常:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString path]: unrecognized selector sent to instance 0x324790'

*** First throw call stack:

(0x22f0022 0x1f7acd6 0x22f1cbd 0x2256ed0 0x2256cb2 0x1e23cf 0x1e20df 0x1e1ff4 0x1c4338 0x1c3da3 0x1cb33 0xdfc386 0xdfd274 0xe0c183 0xe0cc38 0xe00634 0x21daef5 0x22c4195 0x2228ff2 0x22278da 0x2226d84 0x2226c9b 0xdfcc65 0xdfe626 0x1b56d 0x2e75 0x1)

我的项目设置:

在此处输入图像描述我需要提供更多信息吗?我怎么解决这个问题? 在此处输入图像描述 在此处输入图像描述

4

1 回答 1

1

您可能想尝试“clientWithBaseURLString”,因为您正在传递一个 NSString。

于 2012-10-03T15:19:01.140 回答