In the UIScrollView delegate methods, there's:
scrollViewWillEndDragging:withVelocity:targetContentOffset:
and the last parameter is:
(inout CGPoint *)targetContentOffset
I'm curious as to what the inout means and why CGPoint is a pointer. I tried printing targetContentOffset to the console, but I'm not sure how to do so as well. Any help is appreciated!