将数组拆分为字符串[关闭]
Posted
技术标签:
【中文标题】将数组拆分为字符串[关闭]【英文标题】:Split array to strings [closed] 【发布时间】:2014-01-21 04:06:15 【问题描述】:(
56435614315645164,
data = (
"created_time" = "2014-01-20T16:40:22+0000";
id = "277617849058209";
message = "abcdefght";
,
我在 ios 中有这个数组(在索引 0 处)。如何将此数组拆分为字符串?结果应如下所示:
string 1=56435614315645164;
string2=
data = (
"created_time" = "2014-01-20T16:40:22+0000";
id = "277617849058209";
message = "abcdefght";
,
然后我想将字符串 2 拆分为:
ssting1=data=
sstring2=created time=
sstring3=id=
sstring4=message=
【问题讨论】:
【参考方案1】:我从您的帖子中了解到,如果您使用 JSON,则需要反序列化 阅读以下教程
How to deserialize json object and assign to a NSDictionary in iOS http://www.raywenderlich.com/5492/working-with-json-in-ios-5
如果您不使用 JSON,只需使用字典来存储这些值并根据需要进行操作
【讨论】:
谢谢它帮助了我以上是关于将数组拆分为字符串[关闭]的主要内容,如果未能解决你的问题,请参考以下文章