iPhone:我如何在视图中随机播放按钮

时间:2012-05-09 04:56:36

标签: iphone objective-c ios5

我有很多不。按钮在我的视图上,我想要按下按钮(改变位置),然后我如何在我的视图中随机按下按钮。

2 个答案:

答案 0 :(得分:0)

你可以这样做

  1. 使用一组CGPoints创建一个数组,您需要将这些点存储为字符串。
  2. 在layoutSubViews方法中设置如下:

     -(void)layoutSubViews{
       [self.subviews enumerateObjectsUsingBlock:^(id object, NSUInteger idx, BOOL *stop) {
          CGPoint newPoint = CGPointFromString([positionsArray objectAtIndex:idx]);
         object.frame = CGRectMake(newPoint.x,newPoint.y,object.frame.size.width,object.frame.size.height);
    }];
    

    }

  3. 然后你需要改变位置数组中的位置,你可以在这里看到一个示例方法:How to Shuffle an Array

  4. 现在,每当您需要随机播放这些位置时,您都可以在视图上拨打-(void)setNeedsLayout
  5. 还有更多选择,但这是我想到的第一个。

    祝你好运

答案 1 :(得分:0)

使用arc4random()

并更改按钮的位置

.h fileUIButton *buttonsarray[10];

.m file

  // Make array of button using following way.I used this method to creates button and you can use yours.
 - (void)viewDidLoad {
     [super viewDidLoad];

      float y = 5;
      int x = 0;
      int count = 0;
      for (int i = 0 ; i < 10; i++)
     {
        count ++;
        buttonsarray[i] = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        buttonsarray[i].frame =  CGRectMake(x, y, 100, 100);
       [buttonsarray[i] setTitle:[NSString stringWithFormat:@"%d",i+1] forState:UIControlStateNormal];
         x = x + 105;
        [self.view addSubview:b[i]];
        if(count == 3)
       {
        count = 0;
        x = 0;
        y = y+ 105;
      }


    }
}


  // This function will soufflé your buttons
 - (IBAction)btnClicked:(id)sender
   {
     int n = 10;
     int swaper;
     for (int i = 0 ; i < 10 ; i++)
     {
       int r = arc4random()%n;
       if(r != swaper){
        swaper = r;
        CGRect r1 = buttonsarray[i].frame;      
        buttonsarray[i].frame = buttonsarray[swaper].frame;
        buttonsarray[swaper].frame = r1; 

        n--;
    }

  }
}

希望,这会对你有帮助..