我想将获得的 json 数据显示为:
NSDictionary *detail = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONReadingMutableContainers error:&e];
并希望在 UITextView(contact) 中显示它:
self.contact.text = [NSString stringWithFormat:@"%@",[detail valueForKey:@"Contact"];
但是,我得到如下输出:
("Washington St, SD, CA")
详情如下:
(
{
Contact = "Washington St, SD, CA";
Id = 1;
Name = BJs;
}
)
我明白,因为它返回一个数组,但是如何在没有圆括号的字符串中显示它?