0
我在xcode上我每次打開應用程序時都會創建一個圖像,我想用它的座標來計算一些東西。但我不知道我該如何使用他們,我覺得這是像我們如何使用圖像的座標
CGPoint(x;y)
或
int x = (x of the image)
和
int y= (y of theimage).
我怎麼能這樣做嗎?
我在xcode上我每次打開應用程序時都會創建一個圖像,我想用它的座標來計算一些東西。但我不知道我該如何使用他們,我覺得這是像我們如何使用圖像的座標
CGPoint(x;y)
或
int x = (x of the image)
和
int y= (y of theimage).
我怎麼能這樣做嗎?
要獲得一個UIImageView的起源,只需使用:
int x = imageView.frame.origin.x;
int y = imageView.frame.origin.y;
或者:
CGPoint origin = imageView.frame.origin;