UIStackView in iOS 9 has been great.
However, when trying to access the center property of a UIView that fills one of the lower child views within the UIStackView, xcode returns (187.5, 30.5)
The view is actually located at the bottom of the screen. More like (208, 673) on my 5.5" iPhone
I believe xcode is returning the center point in relation to the containing stack child view, however I need to know where the view is in relation to the whole screen.
How then would I find the point on the screen my view is located?