2013-08-21 120 views
0

如何通過json post發送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"; 

.....

如何測試對象發送?

+1

只是爲了記錄 - 它不是你試圖序列化的類,而是類的_instance_。幸運的是,這簡單得多。此外,正常的命名約定將具有以小寫字母開頭的屬性(和方法)名稱。 – Monolo

+0

在http://stackoverflow.com/a/20996601/730807中看到我的答案我正在使用這種方式,它工作得很好,它也會滿足您的需求。希望這有助於您。 –

回答

1

由於@Carl指出,您必須輸入convert it first to a JSON object,然後將其作爲POST請求的參數發送。請注意,後端定義了您的數據如何發送請求。但這是最常見的做法。