- shuffledArrayWithRandomSource:
Returns a new array that lists this array’s elements in a random order, using the specified random source.
新しい配列を返します、それはこの配列の持つ要素を無作為な順序で列記するものです、指定された無作為さの源を使います。
Availability 有効性
Technology
- (NSArray
<ObjectType > *)shuffledArray;
A new array that lists this array’s elements in a random order. この配列の持つ要素を無作為順に列記する新しい配列。
Calling this method is equivalent to calling the shuffled
method and passing the system shared
random source. To influence the random shuffling or to be able to deterministically reproduce a series of shuffles, create your own GKRandom
object.
このメソッドを呼び出すことは、shuffled
メソッドを呼びだしてシステムのshared
無作為源を渡すことと等しいです。無作為シャッフルに影響を与えるにはまたは一連のシャッフルを決定論的に再現可能にするには、あなた独自のGKRandom
オブジェクトを作成してください。
- shuffledArrayWithRandomSource: