0

重複の可能性:
NSMutableArray をシャッフルする最良の方法は何ですか?

ここで私のコードでは、配列内の要素をシャッフルして出力しようとしていますが、正しくシャッフルされていません 。ここに示されているものを試しました。

for(UIView *view in self.view.subviews)
{
    if([view isKindOfClass:[UIButton class]])
    { 
        button= (UIButton *)view;
        if (button.tag >=1 && button.tag <=20)
        {
            for (NSUInteger i = 0; i < count; ++i)
            {
                [texts rotate];
                // Select a random element between i and end of array to swap with.
                int nElements = count - i;
                int n = (arc4random() % nElements) + i;
                [texts exchangeObjectAtIndex:i withObjectAtIndex:n];
                //int myTag= j+1;
                //button = [self.view viewWithTag:myTag];
                name=[NSString stringWithFormat:@"%@",[texts objectAtIndex:n]];
                [button setTitle:name forState:UIControlStateNormal];
                NSLog(@"current  name :%@",name);

            }
        }

    }

}

配列の値をシャッフルした後、繰り返します。pls はこの問題を解決するのに役立ちます

4

2 に答える 2

0

NSMutableArray のカテゴリを作成するだけです

@implementation NSMutableArray (ArrayUtils)
-(void)shuffle
{
static BOOL seeded = NO;
 if(!seeded)
{
    seeded = YES;
    srandom(time(NULL));
}

NSUInteger count = [self count];
for (NSUInteger i = 0; i < count; ++i) {
    // Select a random element between i and end of array to swap with.
    int nElements = count - i;
    int n = (random() % nElements) + i;
    [self exchangeObjectAtIndex:i withObjectAtIndex:n];
}

}

于 2012-11-03T06:12:30.000 に答える
0

int n = (arc4random() % count);
代わりにこれを試してください。現在の要素を、常に後続する要素ではなく、
int n = (arc4random() % nElements) + i;

内の任意の要素と交換していることを確認してください。texts

于 2012-11-03T06:07:58.940 に答える