Search Results

20
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

You can use #pragma mark Foo as a way to organize methods in your source files. When browsing symbols via the pop up menu, whatever you place in "Foo" will appear …
1
vote

Streching and shrinking Image when pinching on the image

The pinch-to-zoom behavior is given to you automatically by the UIScrollView class. Add one in place of your existing image view, then add your image view as a subview to the scroll view. Make sure …