我有一個數組,它有一些數據。現在我想隨機更改字符串的位置,這意味着要將字符串混洗到數組中。但我不想改變數組的順序,我只想改變順序的字符串,並不改變數組索引的位置。在iPhone中使用NSArray生成隨機字符串?
我的實際數組(
(
first,
second,
third,
fourth
),
(
One,
Two,
Three,
Four
),
(
sample,
test,
demo,
data
)
)
預期結果,
(
(
second,
fourth,
third,
first
),
(
Two,
Four,
One,
Three
),
(
test,
demo,
sample,
data
)
)
請幫助我。
謝謝!