NSObject クラスを json post で送信するにはどうすればよいですか?
例:
@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";
.....
テストオブジェクトはどのように送信できますか?