web-dev-qa-db-ja.com

iOS Objective CオブジェクトをJSON文字列に変換します

次のようなObjective Cクラスがあります。

@interface message : NSObject {
 NSString *from;
 NSString *date;
 NSString *msg;
}

このメッセージクラスのインスタンスのNSMutableArrayがあります。 iOS 5 SDKの新しいJSONSerialization APIを使用して、NSMutableArrayのすべてのインスタンスをJSONファイルにシリアル化します。これどうやってするの ?

NSArray内の要素の各インスタンスを反復処理することにより、各キーのNSDictionaryを作成していますか?誰かがこれを解決する方法のコードを手伝ってもらえますか? 「JSON」は結果をサーバー側の呼び出しに歪め、シリアル化ではなくデータの転送を行うため、Googleで良い結果を得ることができません。どうもありがとう。

編集:

NSError *writeError = nil; 
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:notifications options:NSJSONWritingPrettyPrinted error:&writeError];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; 
NSLog(@"JSON Output: %@", jsonString);
25
Sankar

編集:私はあなたのための良い例になるはずのダミーアプリを作りました。

コードスニペットからMessageクラスを作成します。

//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で2つのメッセージのNSArrayをセットアップします。秘Theは、トップレベルのオブジェクト(あなたの場合は通知)をシリアル化する必要があるだけでなく、通知に含まれるすべての要素もそうすることです:dictionaryメソッドを作成した理由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 stack [3146:f803] JSON Output:[{"msg": "c"、 "from": "a"、 "date": "b "}、{" msg ":" f "、" from ":" d "、" date ":" e "}]

元の回答:

this は探しているドキュメントですか?

38
Damo

JSONModel を使用すると、この問題を簡単に解決できます。 JSONModelは、クラスに基づいてオブジェクトを一般的にシリアライズ/デシリアライズするライブラリです。 intshort、およびfloatなどのプロパティに対して非nsobjectベースを使用することもできます。また、ネストされた複雑なJSONにも対応できます。エラーチェックを処理します。

デシリアライズの例。ヘッダーファイル内:

#import "JSONModel.h"

@interface Message : JSONModel 
@property (nonatomic, strong) NSString* from;
@property (nonatomic, strong) NSString* date;
@property (nonatomic, strong) NSString* message;
@end

実装ファイル内:

#import "JSONModelLib.h"
#import "yourPersonClass.h"

NSString *responseJSON = /*from somewhere*/;
Message *message = [[Message alloc] initWithString:responseJSON error:&err];
if (!err)
{
   NSLog(@"%@  %@  %@", message.from, message.date, message.message):
}

シリアル化の例。実装ファイル内:

#import "JSONModelLib.h"
#import "yourPersonClass.h"

Message *message = [[Message alloc] init];
message.from = @"JSON beast";
message.date = @"2012";
message.message = @"This is the best method available so far";

NSLog(@"%@", [person toJSONString]);
8
X Sham

注:これは、シリアル化可能なオブジェクトでのみ機能します。この回答は上記の質問自体の編集で提供されましたが、私は常に「回答」セクションで回答を探します;-)

- (NSString*) convertObjectToJson:(NSObject*) object
{
    NSError *writeError = nil;

    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:object options:NSJSONWritingPrettyPrinted error:&writeError];
    NSString *result = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];

    return result;
}
2
Brad Parks

私のプロジェクトで使用しているライブラリ BWJSONMatcher は、json文字列を1行のコードだけでデータモデルと簡単に一致させるのに役立ちます。

...
NSString *jsonString = @"{your-json-string}";
YourValueObject *dataModel = [YourValueObject fromJSONString:jsonString];

NSDictionary *jsonObject = @{your-json-object};
YourValueObject *dataModel = [YourValueObject fromJSONObject:jsonObject];
...
YourValueObject *dataModel = instance-of-your-value-object;
NSString *jsonString = [dataModel toJSONString];
NSDictionary *jsonObject = [dataModel toJSONObject];
...
1
Burrows Wang