How can a NSObject class be sent through json post?
Example:
@interface TestClass : NSObject
@property (nonatomic,strong) NSString *Value1;
@property (nonatomic,strong) NSString *Value2;
@property (nonatomic,strong) NSString *Value1;
@end
In another file that implements the TestClass:
TestClass *test = [[TestClass alloc]init];
test.Value1 = @"First";
test.Value2 = @"Second";
test.Value3 = @"Third";
.....
How can the test object be sent?