編輯:我做了一個假的應用程序,應該是你一個很好的例子。
我從你的代碼片段創建一個消息類;
//Message.h
@interface Message : NSObject {
NSString *from_;
NSString *date_;
NSString *msg_;
}
@property (nonatomic, retain) NSString *from;
@property (nonatomic, retain) NSString *date;
@property (nonatomic, retain) NSString *msg;
-(NSDictionary *)dictionary;
@end
//Message.m
#import "Message.h"
@implementation Message
@synthesize from = from_;
@synthesize date = date_;
@synthesize msg = mesg_;
-(void) dealloc {
self.from = nil;
self.date = nil;
self.msg = nil;
[super dealloc];
}
-(NSDictionary *)dictionary {
return [NSDictionary dictionaryWithObjectsAndKeys:self.from,@"from",self.date, @"date",self.msg, @"msg", nil];
}
然後我在AppDelegate中設置了兩條消息的NSArray。訣竅是,不僅頂級對象(您的案例中的通知)需要可序列化,而且通知所包含的所有元素也是如此:這就是爲什麼我在Message類中創建了字典方法。
//AppDelegate.m
...
Message* message1 = [[Message alloc] init];
Message* message2 = [[Message alloc] init];
message1.from = @"a";
message1.date = @"b";
message1.msg = @"c";
message2.from = @"d";
message2.date = @"e";
message2.msg = @"f";
NSArray* notifications = [NSArray arrayWithObjects:message1.dictionary, message2.dictionary, nil];
[message1 release];
[message2 release];
NSError *writeError = nil;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:notifications options:NSJSONWritingPrettyPrinted error:&writeError];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSLog(@"JSON Output: %@", jsonString);
@end
當我運行該應用程序的輸出是這樣的:
2012-05-11 11:58:36.018堆棧[3146:F803] JSON輸出:[ { 「msg」 中:「 C 「 」從「: 」一「, 」日期「: 」b「 的 }, { 」msg「 中: 」F「, 」從「: 」d「, 」日期「:」 電子「 } ]
原文答案:
是this您正在查找的文檔是?
的OP首先需要將自己的對象轉換爲一個字典,但那是非常簡單的(靜態方法就可以了) – user439407
大摩:該網頁不會對自定義類的數組轉換成JSON解釋。這正是我正在努力尋找的。 –
如果你的所有類的ivars都是NSString,那麼它應該只是神奇的工作....警告:我沒有試過這個。 – Damo