User Steve Streza - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T16:51:37Zhttp://stackoverflow.com/feeds/user/29314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1432237/streching-and-shrinking-image-when-pinching-on-the-image/1434579#14345791Answer by Steve Streza for Streching and shrinking Image when pinching on the imageSteve Streza2009-09-16T18:04:02Z2009-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#6946683Answer by Steve Streza for RubyCocoa, what's the point?Steve Streza2009-03-29T14:07:48Z2009-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#21576921Answer by Steve Streza for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Steve Streza2008-10-19T00:18:04Z2008-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>