通过json post发送课程

时间:2013-08-21 20:52:06

标签: ios objective-c json http-post

如何通过json post发送NSObject类?

示例:

@interface TestClass : NSObject
 @property (nonatomic,strong) NSString *Value1;
 @property (nonatomic,strong) NSString *Value2;
 @property (nonatomic,strong) NSString *Value1;
@end

在另一个实现TestClass的文件中:

TestClass *test = [[TestClass alloc]init];
test.Value1 = @"First";
test.Value2 = @"Second";
test.Value3 = @"Third";

.....

如何发送测试对象?

1 个答案:

答案 0 :(得分:1)

正如@Carl指出你必须convert it first to a JSON object,然后将其作为参数发送到你的POST请求中。请注意,后端定义了如何为请求发送数据。但这是最常见的做法。