User Steve Streza - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:51:37Z http://stackoverflow.com/feeds/user/29314 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1432237/streching-and-shrinking-image-when-pinching-on-the-image/1434579#1434579 1 Answer by Steve Streza for Streching and shrinking Image when pinching on the image Steve Streza 2009-09-16T18:04:02Z 2009-09-16T18:04:02Z <p>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 the scroll view has a delegate. </p> <p>The scroll view will call the delegate's viewForZoomingInScrollView: method. Make sure it returns your image view.</p> <p>Then, just set the minimumZoomScale and maximumZoomScale, and the behavior should happen automatically.</p> <p>HTH</p> http://stackoverflow.com/questions/694609/rubycocoa-whats-the-point/694668#694668 3 Answer by Steve Streza for RubyCocoa, what's the point? Steve Streza 2009-03-29T14:07:48Z 2009-03-29T14:07:48Z <p>One reason I use scripting languages in my Cocoa apps is for using function closures (specifically from JavaScript). They make doing asynchronous programming much easier, and as a result I tend to use it a lot in controlling networking operations.</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/215769#215769 21 Answer by Steve Streza for What are those little Xcode tips & tricks you wish you knew about 2 years ago? Steve Streza 2008-10-19T00:18:04Z 2008-10-19T00:18:04Z <p>You can use</p> <pre><code>#pragma mark Foo </code></pre> <p>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 bold in the list. You can also use</p> <pre><code>#pragma mark - </code></pre> <p>to display a menu separator. It's very useful, especially for grouping together delegate methods or other groups of methods.</p>