이미지를 터치하여 임의의 지점으로 이동하려고 시도하고 있지만 이제는 설정 공간에 머물러 있어야한다는 것을 알게되었습니다. 그래서 점수 카운터 같은 것을 추가 할 수 있습니다. 내가 겪고있는 문제는 어떤 도움을받을 수 있을지 모르겠다.이미지가 설정된 영역 밖으로 나가는 것을 방지하는 방법
내 코드 :
-(IBAction)hideImage {
CGFloat xRange = self.view.bounds.size.width - Image.bounds.size.width;
CGFloat yRange = self.view.bounds.size.height - Image.bounds.size.height;
CGFloat minX = self.view.center.x - (xRange/2);
CGFloat minY = self.view.center.y - (yRange/2);
int randomX = (arc4random() % (int)floorf(xRange)) + minX;
int randomY = (arc4random() % (int)floorf(yRange)) + minY;
Image.center = CGPointMake(randomX, randomY);
}
감사합니다.