我正在学习 Xcode,我想知道如何让按钮刷新我的代码或其他内容的一部分。我将图片放在屏幕上的随机位置,但我希望能够按下按钮将其重新定位到另一个随机位置,任何输入将不胜感激。谢谢。这是我的代码。视图控制器.m
- (void)viewDidLoad
{
int xValue = arc4random() % 320;
int yValue = arc4random() % 480;
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(xValue, yValue, 70, 30)];
NSString *imgFilepath = [[NSBundle mainBundle] pathForResource:@"clubs-2-150" ofType:@"jpg"];
UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgFilepath];
[imgView setImage:img];
[self.view addSubview:imgView];
[super viewDidLoad];
}