Chaîne JSON à partir de NSDictionary avoir chemin d'accès au fichier

Je suis en train de travailler sur l'application dans laquelle je stocke le nom de fichier et chemin d'accès du fichier dans NSDictionary. Mon dictionnaire comme,

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";
}

Il fonctionne bien, mais quand j'ai essayé de convertir le dictionnaire en chaîne JSON,

NSString *strPathForSong = [json stringWithObject:dictPath];
        NSLog(@"path sting : %@",strPathForSong);

elle renvoie une chaîne vide. Donc, il y a aucun moyen de convertir dictionnaire d'avoir des "/" chaîne en chaîne json??
Je vous remercie à l'avance

Pouvez vous s'il vous plaît fournir le code source de la façon dont vous essayez de convertir NSDictionary en JSON ?
Je l'ai déjà dit dans ma question. veuillez vérifier.

OriginalL'auteur user7388 | 2013-04-26