While in UIView I can get CGpoint of an object like this :
x = self.object.frame.origin.x;
y = self.object.frame.origin.y;
but when I use this code when my object is in scrollView, I got the same x and y as I am in UIView. so how can I determine object CGPoint when I am in scrollView.