User Jason Medeiros - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:46:52Z http://stackoverflow.com/feeds/user/19255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/1627285#1627285 1 Answer by Jason Medeiros for What's the best way to find out the installed version of the iPhone SDK? Jason Medeiros 2009-10-26T20:55:00Z 2009-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#1625787 0 Answer by Jason Medeiros for How do I determine which iPhone SDK I have? Jason Medeiros 2009-10-26T16:32:24Z 2009-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-sqlite3 15 Core Data vs sqlite3 Jason Medeiros 2009-02-07T09:05:09Z 2009-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#518719 10 Answer by Jason Medeiros for How do you explicitly animate a CALayer's backgroundColor? Jason Medeiros 2009-02-06T01:04:41Z 2009-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#518620 1 Answer by Jason Medeiros for rotate a UIView around its center but several times.. Jason Medeiros 2009-02-06T00:26:09Z 2009-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#521119 4 Answer by Jason Medeiros for Objective-C Singleton instance as a static? Jason Medeiros 2009-02-06T16:57:23Z 2009-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#510265 6 Answer by Jason Medeiros for What Cocoa/Core Foundation helper functions do you wish you knew about 2 years ago? Jason Medeiros 2009-02-04T06:21:49Z 2009-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#177261 Comment by Jason Medeiros on What's the best way to find out the installed version of the iPhone SDK? Jason Medeiros 2009-10-26T20:57:57Z 2009-10-26T20:57:57Z In Snow Leopard, try System Profiler &gt; Software &gt; Developer. http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/181179#181179 Comment by Jason Medeiros on What's the best way to find out the installed version of the iPhone SDK? Jason Medeiros 2009-10-26T20:57:27Z 2009-10-26T20:57:27Z This number doesn't help when deciding to grab the latest dmg from developer.apple.com. System Profiler &gt; Software &gt; 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#1480207 Comment by Jason Medeiros on How do I determine which iPhone SDK I have? Jason Medeiros 2009-10-26T16:45:13Z 2009-10-26T16:45:13Z I've posted to that thread updating the information since it seems to have a lot of &quot;Google Juice&quot; despite having poor information. http://stackoverflow.com/questions/1480184/how-do-i-determine-which-iphone-sdk-i-have/1482003#1482003 Comment by Jason Medeiros on How do I determine which iPhone SDK I have? Jason Medeiros 2009-10-26T16:36:55Z 2009-10-26T16:36:55Z None 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#518620 Comment by Jason Medeiros on rotate a UIView around its center but several times.. Jason Medeiros 2009-08-06T15:51:10Z 2009-08-06T15:51:10Z For 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#297307 Comment by Jason Medeiros on What are best practices that you use when writing Objective-C and Cocoa? Jason Medeiros 2009-02-07T22:52:51Z 2009-02-07T22:52:51Z I'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#521119 Comment by Jason Medeiros on Objective-C Singleton instance as a static? Jason Medeiros 2009-02-07T04:03:20Z 2009-02-07T04:03:20Z Did 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#519177 Comment by Jason Medeiros on How do get a script to automatically run before saving a file in XCode? Jason Medeiros 2009-02-06T16:22:16Z 2009-02-06T16:22:16Z If you believe anyone, believe cdespinosa. He works on XCode. http://stackoverflow.com/questions/518530/rotate-a-uiview-around-its-center-but-several-times/519592#519592 Comment by Jason Medeiros on rotate a UIView around its center but several times.. Jason Medeiros 2009-02-06T16:15:53Z 2009-02-06T16:15:53Z The sample code animates 5 full rotations, not 5.2 (i.e. 5*2*M_PI, not 5.2*M_PI).