0

我正在编写一个由 2 个 UIImageViews 和 2 个 UIButtons 组成的简单应用程序。UIImageViews 放置在 UIButtons 之上。

我有 1 个 UIImage 出现在随机 UIImageView 上并在 2 秒后消失。然后用户必须点击他们认为出现图像的按钮。

我打乱 UIImageView 数组并使用第一个元素(索引 0)作为要显示的图像。改组时,我会跟踪哪个元素(即来自哪个索引。假设来自索引“n”)被放置在数组的索引 0 上。

但是,当按下按钮时,我将按下按钮的 id 与索引为 n 的按钮的 id 进行比较。(因为那是随机 UIImageView 的索引)。但由于某种原因,它不起作用。:(

这是我的代码:(我没有上传 .h 文件。它只包含声明。)下面的代码不会产生任何错误/警告消息。它只是没有输出我想要的结果。

@interface ViewController ()
@property (strong, nonatomic) NSMutableArray* tempButton;
@property (strong, nonatomic) NSMutableArray *tempViews;
@property (strong, nonatomic) UIImage *myImage;
@end

@implementation ViewController



- (void)viewDidLoad
{
    [super viewDidLoad];

     _myImage = [UIImage imageNamed:@"hello"];
    _tempButton = [[NSMutableArray alloc] initWithObjects:_button1, _button2, nil];

    _tempViews = [[NSMutableArray alloc]initWithObjects:_image1, _image2, nil];


     [self displayonView];

}



-(void)displayToFindSymbol{
    [_toFindImage setImage:_myImage];
    _toFindImage.contentMode = UIViewContentModeScaleAspectFit;
}

- (IBAction)pressed:(id)sender {

    UIButton *result = (UIButton *)sender;
    if (result == _tempButton[_correctButton]) {
       NSLog (@"Correct");
    }
    else if (result != _tempButton[_correctButton]){
       NSLog (@"Incorrect");            

    }

}



-(NSMutableArray *)shuffleViews{
    NSUInteger count = _tempViews.count;
    int n;
    for (int i=count-1; i>=0; --i) {

        n = arc4random()  % (i + 1);


        [_tempViews exchangeObjectAtIndex:n withObjectAtIndex:i];
    }
    _correctButton = n;
    return _tempViews;

}

-(void)displayonView{

    NSMutableArray *tempArray;
    tempArray = [self shuffleViews]; // shuffle views

     _correctImage = [tempArray objectAtIndex:0];

    _correctImage.contentMode = UIViewContentModeScaleAspectFit;

    [_correctImage setImage:_myImage];

    NSTimer* myTImer;
    myTImer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(hideLabel) userInfo:nil repeats:NO];

}

-(void) hideLabel{
    _correctImage.hidden = YES;
    for (UIButton *each in self.tempButton) {
        each.enabled = YES;
    }
    [self displayToFindSymbol];
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
4

2 回答 2

0

您可以让每个按钮调用不同的方法作为选择器,或者为每个按钮分配不同的标签并在共享方法中检查它。

于 2013-09-14T08:09:51.747 回答
0

添加数组中的所有图像视图以及数组中的所有按钮。

将图像设置为随机图像视图时,存储其索引并稍后使用该索引来获取应单击的相应按钮。

伪代码

NSArray a = [NSArray arrayWithObjects:imgVie1,ImgView2...,nil]
// create second array with buttons 

int randomIndex = arc4random() % a.count;
UIImageView *imgView = [a objectAtIndex:randomIndex];
//set image and hide later

UIButton *correctButton = [secondarray objectAtIndex:randomIndex];
于 2013-09-14T08:10:56.380 回答