User Jason Medeiros - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:46:52Zhttp://stackoverflow.com/feeds/user/19255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/1627285#16272851Answer by Jason Medeiros for What's the best way to find out the installed version of the iPhone SDK?Jason Medeiros2009-10-26T20:55:00Z2009-10-26T20:55:00Z<p>This is a cross post from <a href="http://stackoverflow.com/questions/1480184/how-do-i-determine-which-iphone-sdk-i-have/">this question</a>.</p>
<blockquote>
<p>The best place to check which version of the iPhone SDK you have installed is to use System Profiler.</p>
<p>Apple Menu > About this Mac > More Info... > Software > Developer</p>
<p>Once there, you'll see version and build numbers for all of the major components of the Developer Tools. The top level version and build number corresponds to the name of the disk image you downloaded from Apple.</p>
<p>This works in Snow Leopard, but apparently not in Leopard. I don't know of a singularly useful equivalent in Leopard. Consider upgrading :)</p>
</blockquote>
http://stackoverflow.com/questions/1480184/how-do-i-determine-which-iphone-sdk-i-have/1625787#16257870Answer by Jason Medeiros for How do I determine which iPhone SDK I have?Jason Medeiros2009-10-26T16:32:24Z2009-10-26T20:51:03Z<p>The best place to check which version of the iPhone SDK you have installed is to use System Profiler.</p>
<p>Apple Menu > About this Mac > More Info... > Software > Developer</p>
<p>Once there, you'll see version and build numbers for all of the major components of the Developer Tools. The top level version and build number corresponds to the name of the disk image you downloaded from Apple.</p>
<p>This works in Snow Leopard, but apparently not in Leopard. I don't know of a singularly useful equivalent in Leopard. Consider upgrading :)</p>
http://stackoverflow.com/questions/523482/core-data-vs-sqlite315Core Data vs sqlite3Jason Medeiros2009-02-07T09:05:09Z2009-02-08T17:35:57Z
<p>I am already quite familiar with relational databases and have used sqlite (and other databases) in the past. However, <a href="http://en.wikipedia.org/wiki/Core_Data" rel="nofollow">Core Data</a> has a certain allure, so I am considering spending some time to learn it for use in my next app.</p>
<p>Is there much benefit to using Core Data over sqlite, or vice versa? What are the pros/cons of each?</p>
<p>I find it hard to justify the cost of learning Core Data when Apple doesn't use it for many of its flagship applications like Mail.app or iPhoto.app - instead opting for sqlite databases. sqlite is also used extensively on the iPhone.</p>
<p>Can those familiar with using both comment on their experience? Perhaps, as with most things, the question is deeper than just using one over the other?</p>
http://stackoverflow.com/questions/518192/how-do-you-explicitly-animate-a-calayers-backgroundcolor/518719#51871910Answer by Jason Medeiros for How do you explicitly animate a CALayer's backgroundColor?Jason Medeiros2009-02-06T01:04:41Z2009-02-07T22:46:36Z<p>You don't need to wrap CGColorRefs when setting the toValue or fromValue properties of a CABasicAnimation. Simply use the CGColorRef. To avoid the compiler warning, you can cast the CGColorRef to an id.</p>
<p>In my sample app, the following code animated the background to red.</p>
<pre><code>CABasicAnimation* selectionAnimation = [CABasicAnimation
animationWithKeyPath:@"backgroundColor"];
selectionAnimation.toValue = (id)[UIColor redColor].CGColor;
[self.view.layer addAnimation:selectionAnimation
forKey:@"selectionAnimation"];
</code></pre>
<p>However, when the animation is over, the background returns to the original color. This is because the CABasicAnimation only effects the presentation layer of the target layer while the animation is running. After the animation finishes, the value set in the model layer returns. So you are going to have to set the layers backgroundColor property to red as well. Perhaps turn off the implicit animations using a CATransaction.</p>
<p>You could save yourself this trouble by using an implicit animation in the first place.</p>
http://stackoverflow.com/questions/518530/rotate-a-uiview-around-its-center-but-several-times/518620#5186201Answer by Jason Medeiros for rotate a UIView around its center but several times..Jason Medeiros2009-02-06T00:26:09Z2009-02-07T22:40:04Z<p>You can use the following animation of your UIView's layer property. I've tested it.</p>
<pre><code>UIView *viewToSpin = ...;
CABasicAnimation* spinAnimation = [CABasicAnimation
animationWithKeyPath:@"transform.rotation"];
spinAnimation.toValue = [NSNumber numberWithFloat:5*2*M_PI];
[viewToSpin.layer addAnimation:spinAnimation forKey:@"spinAnimation"];
</code></pre>
http://stackoverflow.com/questions/521102/objective-c-singleton-instance-as-a-static/521119#5211194Answer by Jason Medeiros for Objective-C Singleton instance as a static?Jason Medeiros2009-02-06T16:57:23Z2009-02-06T16:57:23Z<p>I believe it is so that the variable can't be accessed from outside the file for which it is defined. Otherwise it would be globally accessible.</p>
<p>This enforces that a client <strong>must</strong> use -(id)sharedObject to access the singleton.</p>
http://stackoverflow.com/questions/508894/what-cocoa-core-foundation-helper-functions-do-you-wish-you-knew-about-2-years-ag/510265#5102656Answer by Jason Medeiros for What Cocoa/Core Foundation helper functions do you wish you knew about 2 years ago?Jason Medeiros2009-02-04T06:21:49Z2009-02-04T06:21:49Z<p>I've found NSStringFrom*() helpful when logging structs like CGRect, CGPoint, etc.</p>
<p>You can find a comprehensive overview at Apple's <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_Functions/Reference/reference.html" rel="nofollow" title="Foundation Functions Reference">Foundation Functions Reference</a>.</p>
http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/177261#177261Comment by Jason Medeiros on What's the best way to find out the installed version of the iPhone SDK?Jason Medeiros2009-10-26T20:57:57Z2009-10-26T20:57:57ZIn Snow Leopard, try System Profiler > Software > Developer.http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/181179#181179Comment by Jason Medeiros on What's the best way to find out the installed version of the iPhone SDK?Jason Medeiros2009-10-26T20:57:27Z2009-10-26T20:57:27ZThis number doesn't help when deciding to grab the latest dmg from developer.apple.com. System Profiler > Software > Developer in Snow Leopard gives you all the information you need.http://stackoverflow.com/questions/1480184/how-do-i-determine-which-iphone-sdk-i-have/1480207#1480207Comment by Jason Medeiros on How do I determine which iPhone SDK I have?Jason Medeiros2009-10-26T16:45:13Z2009-10-26T16:45:13ZI've posted to that thread updating the information since it seems to have a lot of "Google Juice" despite having poor information.http://stackoverflow.com/questions/1480184/how-do-i-determine-which-iphone-sdk-i-have/1482003#1482003Comment by Jason Medeiros on How do I determine which iPhone SDK I have?Jason Medeiros2009-10-26T16:36:55Z2009-10-26T16:36:55ZNone of these options tell you the build number of the entire suite, which is the only number you have to go off of when staring at a DMG link at developer.apple.com. Use System Profiler instead.http://stackoverflow.com/questions/518530/rotate-a-uiview-around-its-center-but-several-times/518620#518620Comment by Jason Medeiros on rotate a UIView around its center but several times..Jason Medeiros2009-08-06T15:51:10Z2009-08-06T15:51:10ZFor animation timing considerations, please see the reference material for the CAMediaTiming Protocol, which CABasicAnimation implements. Particularly, you'd probably want to set the 'duration' property. The code above is using the default duration of 0.25 seconds.http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/297307#297307Comment by Jason Medeiros on What are best practices that you use when writing Objective-C and Cocoa?Jason Medeiros2009-02-07T22:52:51Z2009-02-07T22:52:51ZI'd suggest that you should put private methods in a class continuation. (i.e. @interface MyClass () ... @end in your .m)http://stackoverflow.com/questions/521102/objective-c-singleton-instance-as-a-static/521119#521119Comment by Jason Medeiros on Objective-C Singleton instance as a static?Jason Medeiros2009-02-07T04:03:20Z2009-02-07T04:03:20ZDid you declare it in the .h or .m file? In the .m (where it's supposed to be) that shouldn't be the case.http://stackoverflow.com/questions/510184/how-do-get-a-script-to-automatically-run-before-saving-a-file-in-xcode/519177#519177Comment by Jason Medeiros on How do get a script to automatically run before saving a file in XCode?Jason Medeiros2009-02-06T16:22:16Z2009-02-06T16:22:16ZIf you believe anyone, believe cdespinosa. He works on XCode.http://stackoverflow.com/questions/518530/rotate-a-uiview-around-its-center-but-several-times/519592#519592Comment by Jason Medeiros on rotate a UIView around its center but several times..Jason Medeiros2009-02-06T16:15:53Z2009-02-06T16:15:53ZThe sample code animates 5 full rotations, not 5.2 (i.e. 5*2*M_PI, not 5.2*M_PI).