2
我在學習Xcode,我想知道如何使按鈕刷新我的代碼或其他東西的一部分。我將圖片放置在屏幕上的隨機位置,但我希望能夠按下按鈕將其重新定位到另一個隨機位置,任何輸入將不勝感激。謝謝。這是我的代碼。 ViewController.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];
}