私は以下の文字列を持っています:
{"list": {"array":[{"current_rate":20.0,"id":1, "name": "abc"},
{"current_rate":20.0,"id":2, "name": "xyz"}]}}
上記の文字列を配列に変換したい
[current_rate: 20.0, id: 1, name: abc]
使ったcomponentSeperatedByString:@":".
ただし、名前フィールドに「:」文字列が含まれていると問題が発生します。
上記の文字列を配列に変換する方法はありますか。