将 Json 数据发送到服务器时出现错误。我使用以下代码将 NSMutableDictionary 更改为 JSON。
NSString* jsonString1 = [postDict JSONRepresentation];
NSLog(@"%@",jsonString1);
JSON 格式:
{"user_email":"gupta.nivrit@gmail.com","firstname":"nivrit","user_password":"1234","confirm_passward":"1234"}
我使用以下方法将此 JSON 格式发送到服务器:
NSMutableDictionary *responseDict =
(NSMutableDictionary *)[[mWebServiceHelperOBJ
makeCallToURL:@"register.php"
withDataPost:jsonString1] JSONValue];
当我实现这段代码时,我收到了这个问题
incompatible pointer type sending NSString to parameter of type NSMutableDictionary.