ファイル名とファイルパスを NSDictionary に保存するアプリに取り組んでいます。私の辞書のように、
Dict Path : {
background = "file://localhost/var/mobile/Applications/6118A03F-345B-42D5-AC19-25F6D9AC4484/Documents/background.caf";
bgMusic = "file://localhost/var/mobile/Applications/6118A03F-345B-42D5-AC19-25F6D9AC4484/Documents/bgMusic.caf";
}
うまくいきますが、辞書をJSON文字列に変換しようとすると、
NSString *strPathForSong = [json stringWithObject:dictPath];
NSLog(@"path sting : %@",strPathForSong);
null 文字列を返します。「/」文字列を持つ辞書をjson文字列に変換する方法はありますか?? 前もって感謝します