NSMutableDictionary
当写入文件时,我试图使我的条目看起来像这样:
<dict>
<key>Track ID</key><integer>686</integer>
<key>Name</key><string>Poetic Justice (Feat. Drake)</string>
<key>Artist</key><string>Kendrick Lamar</string>
<key>Album</key><string>Good Kid M.A.A.D City-(Deluxe Edition)</string>
</dict>
这是我的文件现在的样子:
<dict>
<key>Track ID</key>
<integer>686</integer>
<key>Name</key>
<string>Poetic Justice (Feat. Drake)</string>
<key>Artist</key>
<string>Kendrick Lamar</string>
<key>Album</key>
<string>Good Kid M.A.A.D City-(Deluxe Edition)</string>
</dict>
我尝试使用NSCharacterSet
这样的方法从键字符串和对象中修剪空格和换行符
NSString *trimmedArtistString = [ArtistString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
但这没有用。
这可以做到吗?