User Brad Larson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T08:51:06Zhttp://stackoverflow.com/feeds/user/19679http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815664/how-to-obtain-an-unformatted-string-representation-of-an-nsdecimal-or-nsdecimalnu/1816212#18162121Answer by Brad Larson for How to obtain an unformatted string representation of an NSDecimal or NSDecimalNumber?Brad Larson2009-11-29T17:58:22Z2009-11-29T17:58:22Z<p>For NSDecimal, you can use NSDecimalString with a specified locale:</p>
<pre><code>NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
NSString *decimalString = NSDecimalString(&decimalValue, usLocale);
[usLocale release];
</code></pre>
<p>The U.S. locale uses a period for the decimal separator, and no thousands separator, so I believe that will get you the kind of formatting you're looking for.</p>
<p>As others have pointed out, for an NSDecimalNumber you can use the -descriptionWithLocale: method with the above-specified U.S. locale. This doesn't lose you any precision.</p>
http://stackoverflow.com/questions/1812810/list-of-iphone-applications-that-support-openurl/1814031#18140313Answer by Brad Larson for List of iPhone Applications that support openURL:Brad Larson2009-11-28T22:51:27Z2009-11-28T22:51:27Z<p><a href="http://wiki.akosma.com/IPhone%5FURL%5FSchemes" rel="nofollow">This</a> appears to be a nice informal wiki of various custom-URL-supporting applications (although it is missing <a href="http://www.sunsetlakesoftware.com/molecules" rel="nofollow">my own</a>, as well as at least one other application that I know). There is also <a href="http://applookup.com/2009/11/iphone-apps-with-special-url-shortcuts/" rel="nofollow">this post</a>.</p>
http://stackoverflow.com/questions/1801805/how-to-create-iphone-uitableview-object-by-hand/1809403#18094031Answer by Brad Larson for How to create iPhone UITableview object by handBrad Larson2009-11-27T15:39:53Z2009-11-27T15:39:53Z<p>For an example of an application that creates all of its views programmatically, I can direct you to the source code of my application <a href="http://www.sunsetlakesoftware.com/molecules" rel="nofollow">Molecules</a>. It makes very little sense to manually create UITableViews, because you'll want to manage them via UITableViewControllers.</p>
<p>As Matt points out, using Interface Builder is probably the preferable way of doing this now. I originally wrote this application when Interface Builder was less capable than it is today. However, I have seen a very slight reduction in application startup time when using a view hierarchy entirely generated in code vs. one deserialized from a NIB.</p>
http://stackoverflow.com/questions/1807961/how-to-bind-text-value-to-sqlite3-database-in-iphone/1809359#18093591Answer by Brad Larson for How to bind text value to sqlite3 database in iphoneBrad Larson2009-11-27T15:29:13Z2009-11-27T15:29:13Z<p>As Toby points out, the variables pvr, fame, cinemax, and big (and the reassigned pvr1, fame1, cinemax1, and big1) are autoreleased when returned from -stringWithUTF8String:, but you never retain them. Any access to these variables after this point will cause a crash.</p>
<p>You say that you are seeing a thrown exception. It might be helpful to know what that exception is, by examining the console output. Also, you can enable a breakpoint on objc_exception_throw in libobjc.A.dylib, then debug with breakpoints on, to find the exact line at which this exception occurs.</p>
http://stackoverflow.com/questions/1801341/core-data-large-datasets-and-very-long-load-times/1804306#18043062Answer by Brad Larson for Core Data - Large Datasets and Very Long Load TimesBrad Larson2009-11-26T15:26:17Z2009-11-26T15:26:17Z<p>On your fetch request, have you used -setFetchBatchSize: to minimize the number of items fetched at once (generally, the number of items onscreen, plus a few for a buffer)? Without that, you won't see as much of a performance benefit from using an NSFetchedResultsController for your table view.</p>
<p>You could also limit the properties being fetched by using -setPropertiesToFetch: on your fetch request. It might be best to limit your fetch to only those properties of your objects that will influence their display in the table view. The remainder can be lazy-loaded later when you need them.</p>
http://stackoverflow.com/questions/1798457/iphone-analysis-design-creating-work-flow/1798946#17989461Answer by Brad Larson for iphone Analysis & design - creating work flowBrad Larson2009-11-25T18:19:05Z2009-11-25T18:19:05Z<p>For live prototyping of an iPhone application from sketches, I'd suggest you look at the <a href="http://giveabrief.com/" rel="nofollow">Briefs framework</a>. From a series of images and a property list, Briefs lets you create a full native application for testing out your UI design in practice.</p>
http://stackoverflow.com/questions/1571182/how-to-limit-a-uiimageview-to-move-in-a-specific-path/1798267#17982670Answer by Brad Larson for How to limit a UIImageView to move in a specific path?Brad Larson2009-11-25T16:44:25Z2009-11-25T16:44:25Z<p>For code to animate a UIImageView along a path, see <a href="http://stackoverflow.com/questions/1142727/how-can-i-animate-the-movement-of-a-view-or-image-along-a-curved-path/1143095#1143095">my answer</a> to <a href="http://stackoverflow.com/questions/1142727/how-can-i-animate-the-movement-of-a-view-or-image-along-a-curved-path">this question</a>.</p>
http://stackoverflow.com/questions/1795412/whats-the-fastest-way-to-save-data-and-read-it-next-time-in-a-iphone-app/1797124#17971241Answer by Brad Larson for What's the fastest way to save data and read it next time in a IPhone App ?Brad Larson2009-11-25T14:06:19Z2009-11-25T14:06:19Z<p>Store your dictionary in Core Data and use <a href="http://developer.apple.com/iphone/library/documentation/CoreData/Reference/NSFetchedResultsController%5FClass/Reference/Reference.html" rel="nofollow">NSFetchedResultsController</a> to manage the display of these dictionary entries in your table view. Loading all 125,000 words into memory at once is a terrible idea, both performance- and memory-wise. Using the -setFetchBatchSize: method on your fetch request for loading the words for your table, you can limit NSFetchedResultsController to only handling the small subset of words that are visible at any given moment, plus a little buffer. As the user scrolls up and down the list of words, new batches of words are fetched in transparently. </p>
<p>A case like yours is exactly why this class (and Core Data) was added to iPhone OS 3.0.</p>
http://stackoverflow.com/questions/1792142/iphone-app-launch-time-lifecycle-question/1793117#17931171Answer by Brad Larson for iPhone app launch time, lifecycle questionBrad Larson2009-11-24T21:43:16Z2009-11-24T21:43:16Z<p>I'm guessing that you're seeing this delay when running your application via Xcode. Xcode has to set up a few things behind the scenes to grab console output, etc., which induces an initial delay on startup. </p>
<p>My recommendation is to perform your application startup timings (from main() to -applicationDidFinishLaunching:) by launching the application manually on the device. Do this a few times to account for initial load artifacts. If you log your results to the console, you can then grab them using the Xcode organizer. I've seen much shorter startup timings when testing my applications this way.</p>
http://stackoverflow.com/questions/1784745/iphone-fluid-simulation/1785088#17850881Answer by Brad Larson for iPhone fluid simulationBrad Larson2009-11-23T18:35:44Z2009-11-23T18:35:44Z<p>Simulating fluids is a tremendous challenge for modern desktop computers, so I would not expect the greatest performance when trying to get this working on a mobile device. Running full Navier-Stokes calculations on the iPhone is probably going to chug pretty badly.</p>
<p>However, in the past I was able to perform 2-D fluid modeling simulations on limited hardware using <a href="http://homepage.univie.ac.at/Franz.Vesely/cp%5Ftut/nol2h/new/c8hd%5Fs3lgm.html" rel="nofollow">lattice gas automata</a>. With lattice gas automata, you approximate a fluid as a fine hexagonal grid, where particles can travel in one of six directions and obey specific collision rules. There are some limitations to this approach (addressed by the Lattice Boltzmann Method), but it can do a very good job of simulating fluids, even including compressible ones like air. Why this works well on limited hardware is that these calculations can be done using bitwise operators and simple lookup tables, without the need for any floating point calculations. You might be able to make something like this work on the iPhone's processor. For more on this technique, you can consult Appendix A of my <a href="http://www.sunsetlakesoftware.com/publication/new-technologies-fabricating-biological-microarrays" rel="nofollow">Ph.D. dissertation</a>, where I explain the process and have source code for a fluid modeler I wrote.</p>
<p>That said, if all you want to do is mimic the appearance of water in your application, the answers to the following questions provide some good suggestions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/665076/how-to-implement-water-ripples">"How to implement water ripples?"</a></li>
<li><a href="http://stackoverflow.com/questions/726738/how-do-i-make-a-water-effect-view-with-opengles-on-the-iphone">"How do I make a water effect view with openGLES on the iPhone?"</a></li>
</ul>
http://stackoverflow.com/questions/1780673/how-can-i-improve-this-piece-of-code/1783160#17831605Answer by Brad Larson for How can I improve this piece of code?Brad Larson2009-11-23T13:35:27Z2009-11-23T13:35:27Z<p>Unless you have a need for double precision in your distance, change distance to a float. CGFloat is defined as a float on the iPhone, and fabsf() takes a float value and returns a float value. The iPhone can be significantly slower at handling double-precision values than standard floats. </p>
<p>In fact, there's no point in using double precision for your distance variable, because you have already lost precision by running your calculation through fabsf(), which only returns a float.</p>
http://stackoverflow.com/questions/1782450/how-do-i-find-the-size-of-an-sqlite-database-in-an-iphone-application/1783114#17831141Answer by Brad Larson for How do I find the size of an SQLite database in an iPhone application?Brad Larson2009-11-23T13:25:31Z2009-11-23T13:25:31Z<p>You can use the following code (drawn from <a href="http://stackoverflow.com/questions/1719888/how-do-i-find-the-size-of-my-core-data-persistent-store-and-the-free-space-on-the/1723418#1723418">my answer</a> to <a href="http://stackoverflow.com/questions/1719888/how-do-i-find-the-size-of-my-core-data-persistent-store-and-the-free-space-on-the">this question</a>) to determine both your database's size and the free space on the filesystem:</p>
<pre><code>NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *persistentStorePath = [documentsDirectory stringByAppendingPathComponent:@"database.sqlite"];
NSError *error = nil;
NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:persistentStorePath error:&error];
NSLog(@"Persistent store size: %@ bytes", [fileAttributes objectForKey:NSFileSize]);
NSDictionary *fileSystemAttributes = [[NSFileManager defaultManager] attributesOfFileSystemForPath:persistentStorePath error:&error];
NSLog(@"Free space on file system: %@ bytes", [fileSystemAttributes objectForKey:NSFileSystemFreeSize]);
</code></pre>
<p>This assumes that your database is called "database.sqlite" and is stored at the root of your application's documents directory.</p>
http://stackoverflow.com/questions/1778911/how-to-swap-negative-rotation-values-over-to-positive-rotation-values/1779660#17796600Answer by Brad Larson for How to swap negative rotation values over to positive rotation values?Brad Larson2009-11-22T19:15:53Z2009-11-22T19:15:53Z<p>I provide code to return 0 - 360 degree angle values from the layer's transform property in <a href="http://stackoverflow.com/questions/1778738/how-to-resolve-this-rotation-problem/1779653#1779653">this answer</a> to your <a href="http://stackoverflow.com/questions/1778738/how-to-resolve-this-rotation-problem">previous question</a>.</p>
http://stackoverflow.com/questions/1778738/how-to-resolve-this-rotation-problem/1779653#17796530Answer by Brad Larson for How to resolve this rotation problem?Brad Larson2009-11-22T19:12:18Z2009-11-22T19:12:18Z<p>For your UIView's CALayer, the transform property is a CATransform3D struct. There is no rotation member of that struct, but Apple has provided a convenience keypath to set and read rotation from that struct. The change from positive to negative degrees is an artifact of the calculations used to determine rotation from the struct. This math is described for the 2-D equivalent of CATransform3D, CGAffineTransform, in the Quartz 2D Programming Guide section <a href="http://developer.apple.com/mac/library/documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq%5Faffine/dq%5Faffine.html#//apple%5Fref/doc/uid/TP30001066-CH204-CJBECIAD" rel="nofollow">"The Math Behind the Matrices"</a>.</p>
<p>To account for this, you could do the calculations yourself using code that I provide in <a href="http://stackoverflow.com/questions/877198/is-there-a-way-to-figure-out-how-many-degrees-an-view-is-rotated-currently-durin/878618#878618">this answer</a>:</p>
<pre><code>CATransform3D rotationTransform = [(CALayer *)[self.layer presentationLayer] transform];
float angle;
if (rotationTransform.m11 < 0.0f)
angle = 180.0f - (asin(rotationTransform.m12) * 180.0f / M_PI);
else
angle = asin(rotationTransform.m12) * 180.0f / M_PI;
</code></pre>
<p>This should yield angle values ranging from 0 to 360. This will flip over once you cross 0 or 360, due to the cyclical nature of the rotation.</p>
http://stackoverflow.com/questions/1776042/synchronized-and-nslock-differences/1777194#17771941Answer by Brad Larson for @synchronized() and NSLock differencesBrad Larson2009-11-21T23:49:52Z2009-11-21T23:49:52Z<p>If you really do have something that you want to be processed one item at a time, my recommendation is to use NSOperations and an NSOperationQueue where you've set the maxConcurrentOperationCount to 1. If you make sure that the only way that this shared block of code is accessed is through operations in this queue, you'll do away with the need for expensive locks. </p>
<p>This may require a little reorganization of your application, but I've found that applying this within my own applications has led to better performance and cleaner code.</p>
http://stackoverflow.com/questions/1767401/animating-a-shape-with-coreanimation/1776147#17761471Answer by Brad Larson for Animating a shape with CoreAnimationBrad Larson2009-11-21T17:39:27Z2009-11-21T23:30:52Z<p>If you are writing this for iPhone OS 3.x (or Snow Leopard), the new <a href="http://developer.apple.com/IPhone/library/documentation/GraphicsImaging/Reference/CAShapeLayer%5Fclass/Reference/Reference.html" rel="nofollow">CAShapeLayer class</a> should let you do this kind of animation pretty easily. If you have a path that maintains the same number of control points (like in your case), you can set that path to the CAShapeLayer, then animate the path property from that starting value to your final path. Core Animation will perform the appropriate interpolation of the control points in the path to animate it between those two states (more, if you use a CAKeyframeAnimation).</p>
<p>Note that this is a layer, so you will need to add it as a sublayer of your UIView. Also, I don't believe that the path property implicitly animates, so you may need to manually create a CABasicAnimation to animate the change in shape from path 1 to path 2.</p>
<p>EDIT (11/21/2009): Joe Ricioppo has a nice writeup about CAShapeLayer <a href="http://tumbljack.com/post/179975074/complex-interpolation-with-cashapelayer-free" rel="nofollow">here</a>, including some videos that show off these kinds of animations.</p>
http://stackoverflow.com/questions/1771613/are-there-wwdc-2007-or-2008-videos-for-iphone-os/1772150#17721501Answer by Brad Larson for Are there WWDC 2007 or 2008 videos for iPhone OS?Brad Larson2009-11-20T17:44:23Z2009-11-20T17:44:23Z<p>You couldn't do native iPhone development in 2007, so the only iPhone-related sessions from then were on doing web development for the device. There are so many resources for this available out there that I'm not sure you'd gain much from tracking those videos down.</p>
<p>I have the videos from both WWDC 2008 and 2009, and the 2009 sessions have pretty much superseded the 2008 ones. Even the engineers at Apple were still discovering the best practices for iPhone development in 2008, when the SDK was still in beta. I can't think of a topic that I didn't think was covered better by the 2009 sessions.</p>
<p>Normally, if you're an Apple Developer Connection Select member you have access to a library of foundational sessions from previous WWDCs on iTunes. Many Snow Leopard sessions from 2008 are available on there, but no iPhone ones, I think for the reasons I've described about. They're simply out of date by now. I'm not aware of any other way of purchasing the 2008 sessions separately.</p>
http://stackoverflow.com/questions/1761288/will-this-hack-make-apple-furious-will-the-reject-my-app/1763455#17634556Answer by Brad Larson for Will this hack make apple furious? (Will the reject my app ?)Brad Larson2009-11-19T13:57:00Z2009-11-19T13:57:00Z<p>The underscores as prefixes of the properties you're accessing (_titleLabel, _bodyTextLabel) clearly indicate that these are private properties and should not be tinkered with. Apple has recently started scanning all submitted binaries for access to private methods and properties, and those values by themselves within your application should be enough to get you rejected. It is never a good idea to use private APIs, rejections or no, because they are typically private for a reason and may break your application with future OS updates.</p>
<p>Additionally, you are violating the <a href="http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/mobilehig/ModalViews/ModalViews.html#//apple%5Fref/doc/uid/TP40006556-CH11-SW8" rel="nofollow">iPhone Human Interface Guidelines</a> by changing the alert color:</p>
<blockquote>
<p>You can specify the text, the number
of buttons, and the button contents in
an alert, but you can’t customize the
background appearance of the alert
itself.</p>
</blockquote>
<p>Again, from the <a href="http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/mobilehig/ModalViews/ModalViews.html#//apple%5Fref/doc/uid/TP40006556-CH11-SW3" rel="nofollow">iPhone Human Interface Guidelines</a>:</p>
<blockquote>
<p>Because users are accustomed to the
appearance and behavior of these
views, it’s important to use them
consistently and correctly in your
application.</p>
</blockquote>
http://stackoverflow.com/questions/1728220/objective-c-programming-to-call-an-application-from-another-apps/1763373#17633731Answer by Brad Larson for Objective-C programming to call an application from another appsBrad Larson2009-11-19T13:40:33Z2009-11-19T13:40:33Z<p>Something's wrong with the code of your BackgroundColor application. You've wrapped a series of method implementations (-doOrange, -doBlue, etc.) within another method implementation (-application:handleOpenURL:). The compiler should be giving you errors about this. You need to move those method implementations out of that other method, and use a switch statement to call the methods. Right now, this code is nonsensical.</p>
http://stackoverflow.com/questions/1754633/my-breakpoint-is-not-working-please-give-me-some-suggestions-as-to-why-not/1755505#17555050Answer by Brad Larson for My breakpoint is not working please give me some suggestions as to why notBrad Larson2009-11-18T11:56:05Z2009-11-18T11:56:05Z<p>You might also refer to Jeff Johnson's article <a href="http://lapcatsoftware.com/blog/2009/11/16/why-did-my-breakpoint-not-get-hit/" rel="nofollow">"Why did my breakpoint not get hit?"</a>.</p>
http://stackoverflow.com/questions/1747651/about-wifimanager-bundle/1749145#17491450Answer by Brad Larson for about WifiManager.bundleBrad Larson2009-11-17T14:10:00Z2009-11-17T14:10:00Z<p>According to <a href="http://code.google.com/p/iphone-wireless/issues/detail?id=26#c11" rel="nofollow">this discussion</a>, doing the above will return NULL on the iPhone Simulator, because it lacks the required bundle. If you are still running into issues with this on the device, it might be that Apple has changed the internal file structure for that system item. This is one of the reasons why it is bad to rely in private APIs.</p>
<p>For more on WiFi snooping, you might refer to the source code for <a href="http://code.google.com/p/iphone-wireless/wiki/Stumbler" rel="nofollow">this project</a>, because they might have resolved these issues. However, once again I'd like to remind you that you will not be able to submit an application to the App Store that uses this, because of the private API calls. Apple is now scanning all submitted applications for these calls and instantly rejecting them.</p>
http://stackoverflow.com/questions/1746452/how-to-send-a-touch-event-to-iphone-os/1746629#17466291Answer by Brad Larson for How to send a touch event to iPhone OS?Brad Larson2009-11-17T04:42:08Z2009-11-17T04:42:08Z<p>See Matt Gallagher's article <a href="http://cocoawithlove.com/2008/10/synthesizing-touch-event-on-iphone.html" rel="nofollow">"Synthesizing a touch event on the iPhone"</a>. You may also check out the <a href="http://cocoawithlove.com/2008/10/synthesizing-touch-event-on-iphone.html" rel="nofollow">Three20 framework</a>, which I believe used synthesized touch events to test UI elements (leading to a rash of recent <a href="http://groups.google.com/group/three20/msg/aa896b3046a4b06e" rel="nofollow">application rejections</a> due to the use of private APIs).</p>
http://stackoverflow.com/questions/1741281/game-development-for-iphone/1742176#17421762Answer by Brad Larson for game development for iPhone. Brad Larson2009-11-16T13:22:52Z2009-11-16T13:22:52Z<p>The topic of getting started with iPhone game development is a very popular one here. Many questions have been asked about this, including</p>
<ul>
<li><a href="http://stackoverflow.com/questions/332039/getting-started-with-iphone-development">"Getting Started With iPhone Development"</a></li>
<li><a href="http://stackoverflow.com/questions/720901/learning-iphone-game-development">"learning iphone game development"</a></li>
<li><a href="http://stackoverflow.com/questions/601604/which-technologies-concepts-do-you-suggest-i-learn-before-creating-an-iphone-game">"Which technologies/concepts do you suggest I learn before creating an iPhone game?"</a></li>
<li><a href="http://stackoverflow.com/questions/811567/iphone-game-developers-what-does-your-toolchain-look-like">"iPhone Game Developers - What does your toolchain look like?"</a></li>
<li><a href="http://stackoverflow.com/questions/1176266/what-are-the-gotchas-when-developing-an-iphone-game">"What are the “gotchas” when developing an iPhone Game?"</a></li>
</ul>
<p>Many resources for getting started with iPhone development have been listed in the answers to those questions.</p>
http://stackoverflow.com/questions/1741402/how-would-i-implement-animation-along-a-path-using-the-iphone-sdk/1742122#17421220Answer by Brad Larson for How would I implement animation along a path using the iPhone SDK?Brad Larson2009-11-16T13:12:34Z2009-11-16T13:12:34Z<p>For example code that performs an animation along a curved path, you can consult <a href="http://stackoverflow.com/questions/1142727/how-can-i-animate-the-movement-of-a-view-or-image-along-a-curved-path/1143095#1143095">my answer</a> to <a href="http://stackoverflow.com/questions/1142727/how-can-i-animate-the-movement-of-a-view-or-image-along-a-curved-path">this question</a>. As Till suggests, you'll want to use a CAKeyframeAnimation with a Core Graphics curved path set to the animation's path property.</p>
http://stackoverflow.com/questions/1739176/iphone-multithreading-and-ai/1739219#17392195Answer by Brad Larson for Iphone multithreading and AIBrad Larson2009-11-15T23:09:07Z2009-11-15T23:09:07Z<p>My recommendation would be to use an NSOperationQueue for your AI processing actions. As the user performs actions, create an NSOperation which handles the AI processing in response of that event and add it to the NSOperationQueue. If there are dependencies between these actions, or if you wish to split your processing up into smaller sub-actions, you can set these actions to process only when certain conditions are met.</p>
<p>Operations placed within an NSOperationQueue will run on a background thread, so they will not block the main thread. For UI updates or other actions that need to be taken on the main thread, I recommend using -performSelectorOnMainThread:withObject:waitUntilDone: to call a method within your operation that posts a notification via NSNotificationCenter's -postNotificationName:object:. Have your view controller or other controller respond to these notifications and do what they need to in response to your AI routine's results.</p>
http://stackoverflow.com/questions/1735736/download-store-view-and-manage-pdf-file/1736291#17362911Answer by Brad Larson for Download, store, view and manage PDF FileBrad Larson2009-11-15T01:42:42Z2009-11-15T01:42:42Z<p>You can download a PDF the same way as you would download any other file, using an NSURLConnection or NSData's +dataWithContentsOfURL: method. This file will be stored within your application's sandboxed documents directory. Other applications on the filesystem will not have access to it.</p>
<p>As far as viewing the PDF without using UIWebView, this can be accomplished using CGPDFDocument, as described in the answers to <a href="http://stackoverflow.com/questions/93297/newbie-wants-to-create-a-pdf-reader-for-ipod-touch-whats-the-best-approach">this question</a>.</p>
http://stackoverflow.com/questions/1734695/enqueue-a-selector-to-the-run-loop-is-nsobject-performselectorwithobjectafte/1735475#17354752Answer by Brad Larson for Enqueue a selector to the run loop - is [NSObject performSelector:withObject:afterDelay:] the way to go?Brad Larson2009-11-14T20:23:45Z2009-11-14T20:23:45Z<p>I don't see anything inelegant about the -performSelector:withObject:afterDelay: method that you highlight. This method simply enqueues a task to be performed after the completion of the current cycle of the run loop. From the <a href="http://developer.apple.com/IPhone/library/documentation/Cocoa/Conceptual/Multithreading/RunLoopManagement/RunLoopManagement.html#//apple%5Fref/doc/uid/10000057i-CH16-SW44" rel="nofollow">documentation in the section you linked to</a>:</p>
<blockquote>
<p>Performs the specified selector on the
current thread during the next run
loop cycle and after an optional delay
period. Because it waits until the
next run loop cycle to perform the
selector, these methods provide an
automatic mini delay from the
currently executing code. Multiple
queued selectors are performed one
after another in the order they were
queued.</p>
</blockquote>
<p>An NSTimer object is not created to manage this, the selector is simply enqueued to be run after a certain delay (a small delay means immediately after the completion of the run loop cycle). For actions that you wish to happen after updates to the UI take place, this is the simplest technique.</p>
<p>For more explicit, threaded queueing, you could look at <a href="http://developer.apple.com/IPhone/library/documentation/Cocoa/Reference/NSOperation%5Fclass/index.html" rel="nofollow">NSOperations</a> and <a href="http://developer.apple.com/IPhone/library/documentation/Cocoa/Reference/NSOperationQueue%5Fclass/Reference/Reference.html" rel="nofollow">NSOperationQueues</a>. An NSOperationQueue with a maxConcurrentOperationCount of 1 can run operations in order, one after the other.</p>
http://stackoverflow.com/questions/1733117/fetching-core-data-in-the-background/1733302#17333024Answer by Brad Larson for Fetching Core Data in the backgroundBrad Larson2009-11-14T04:43:16Z2009-11-14T04:43:16Z<p>Mixing multithreading and Core Data is not a simple task. The <a href="http://developer.apple.com/iphone/library/documentation/cocoa/Conceptual/CoreData/Articles/cdMultiThreading.html#//apple%5Fref/doc/uid/TP40003385" rel="nofollow">"Multi-Threading with Core Data"</a> section of the Core Data Programming Guide describes how to interact with Core Data on multiple threads, including all the things that you need to be careful of.</p>
<p>Basically, you will need to create a separate managed object context for each thread. These contexts can share access to one managed object model and persistent store. For your case, they suggest the following:</p>
<blockquote>
<p>You use two managed object contexts
associated with a single persistent
store coordinator. You fetch in one
managed object context on a background
thread, and pass the object IDs of the
fetched objects to another thread. In
the second thread (typically the
application's main thread, so that you
can then display the results), you use
the second context to fault in objects
with those object IDs (you use
objectWithID: to instantiate the
object).</p>
</blockquote>
<p>It sounds like the BackgroundFetching sample application shows how to do this, but I don't have it on my system.</p>
<p>However, before you get too far into multithreading your fetch request, I'd take a hard look into why it's taking so long to load. I'd first recommend using -setFetchBatchSize: on your NSFetchRequest to limit the number of objects loaded into memory via your fetch (which will save you a lot of memory, too). Next, I'd use -setPropertiesToFetch: to limit the properties fetched to only those you'll be using immediately.</p>
http://stackoverflow.com/questions/1732111/self-deleting-iphone-app/1732857#17328572Answer by Brad Larson for Self Deleting iPhone appBrad Larson2009-11-14T01:04:19Z2009-11-14T01:04:19Z<p>If you are openly storing the code that contains this algorithm within your application, there's nothing stopping the "wrong people" from jailbreaking the device and copying the complete file structure of the device before you run your "wipe" process.</p>
<p>Additionally, if you are dealing with a U.S. Government customer, I doubt that they will approve of the purchase of a jailbroken device, given that the vendor of such a device has <a href="http://www.macnn.com/articles/09/02/13/apple.jailbreaking.stance/" rel="nofollow">claimed that jailbreaking is illegal</a>. Whether or not this will hold up in court, the government tends to be conservative in these matters and err on the side of caution. Because Apple is a large U.S. company and a vendor to the government, I wouldn't expect the government procurers to take the jailbreakers' side in this.</p>
<p>My recommendation would be to encrypt the particular algorithms within a file in your application's bundle, and require the user of this application to decrypt this file into memory with the correct (difficult) password. That way, even if the "bad guys" were to gain access to the application, they wouldn't have everything they need to access these algorithms and would have to brute-force the password on the encrypted portion. This could be done on a standard, non-jailbroken device.</p>
<p>The U.S. Army is <a href="http://www.newsweek.com/id/194623" rel="nofollow">rolling out iPods in the field</a>, with custom applications on them, so I'm sure that you're not the first person facing this challenge. If this work is being funded through a Department of Defense SBIR grant (or similar), you may even be able to contact your contracting officer and see if they can put you in touch with people at the appropriate agency who may be able to help you out with this (or even determine if it an issue to begin with).</p>
http://stackoverflow.com/questions/1727952/unzip-nsdata-without-temporary-file/1729231#17292310Answer by Brad Larson for Unzip NSData without temporary fileBrad Larson2009-11-13T13:36:15Z2009-11-13T13:36:15Z<p>In <a href="http://stackoverflow.com/questions/230984/compression-api-on-the-iphone/234099#234099">this answer</a> to <a href="http://stackoverflow.com/questions/230984/compression-api-on-the-iphone">this question</a>, I point out the CocoaDev wiki <a href="http://www.cocoadev.com/index.pl?NSDataCategory" rel="nofollow">category on NSData</a> which adds zip / unzip support to that class. This would let you do this entirely in memory.</p>
http://stackoverflow.com/questions/1801341/core-data-large-datasets-and-very-long-load-times/1804306#1804306Comment by Brad Larson on Core Data - Large Datasets and Very Long Load TimesBrad Larson2009-11-28T22:44:26Z2009-11-28T22:44:26Z-setPropertiesToFetch: is new with Core Data in Snow Leopard and iPhone OS 3.0, so the documentation may not have caught up with it. From the presentation on the topic that was given at WWDC, it was indicated that this works with normal fetch requests and causes only the selected properties to be loaded into memory with your managed objects. If you use an accessor for a non-loaded property, that property will be loaded from the database on disk at that moment.http://stackoverflow.com/questions/1801805/how-to-create-iphone-uitableview-object-by-hand/1809403#1809403Comment by Brad Larson on How to create iPhone UITableview object by handBrad Larson2009-11-28T22:23:54Z2009-11-28T22:23:54ZCocoa is heavily reliant on the MVC design pattern. UITableViewController has been provided for you as a controller class for managing the logic around a table view, and it handles the table view creation and display for you. You'll find that Cocoa Touch is architected in such a way that it's cleaner to work with view controllers for full-screen views, rather than the views themselves.http://stackoverflow.com/questions/1811063/predicting-performance-for-an-iphone-ipod-touch-app/1811079#1811079Comment by Brad Larson on Predicting performance for an iPhone/iPod Touch AppBrad Larson2009-11-28T14:22:49Z2009-11-28T14:22:49ZObjectAlloc is not the best source of memory usage information. It can hide a lot of memory usage by views and other UI elements. You want to examine the total memory usage of your application using the Memory Monitor instrument, as well.http://stackoverflow.com/questions/1806933/using-nsstring-stringwithcontentsoffileusedencodingerror/1807215#1807215Comment by Brad Larson on using NSString + stringWithContentsOfFile:usedEncoding:error:Brad Larson2009-11-27T15:43:58Z2009-11-27T15:43:58ZThis should not be an answer, but a comment on the answer you have accepted.http://stackoverflow.com/questions/1805313/xcode-documentation-links-behave-crazyComment by Brad Larson on Xcode documentation links behave crazyBrad Larson2009-11-27T02:25:04Z2009-11-27T02:25:04ZAs Niels states, this is a duplicate of the following question: <a href="http://stackoverflow.com/questions/1288900/xcode-developer-documentation-link-hover-jumps-to-top" rel="nofollow" title="xcode developer documentation link hover jumps to top">stackoverflow.com/questions/1288900/…</a>http://stackoverflow.com/questions/1800139/core-data-instruments-for-the-iphone/1800411#1800411Comment by Brad Larson on Core Data Instruments for the iPhoneBrad Larson2009-11-26T02:38:28Z2009-11-26T02:38:28ZThe Core Data instruments on the Mac rely on DTrace. Since we don't have DTrace on the iPhone yet, I'm not surprised that they only work against the Simulator (like custom DTrace scripts do).http://stackoverflow.com/questions/1795412/whats-the-fastest-way-to-save-data-and-read-it-next-time-in-a-iphone-app/1797124#1797124Comment by Brad Larson on What's the fastest way to save data and read it next time in a IPhone App ?Brad Larson2009-11-25T15:52:49Z2009-11-25T15:52:49ZWhy won't you be able to run the same search routine as you do with your SQLite database? If it requires a secondary hash table of some sort, you could use Core Data for that and perform queries against this hash table. All I know is that Apple themselves use Core Data for storing your contacts, with search-as-you-type enabled there. I recommend testing the performance first with standard queries as you type and seeing if that really is too slow for your needs. Core Data can surprise you, performance-wise.http://stackoverflow.com/questions/1795803/uiview-flip-from-topComment by Brad Larson on uiview flip from topBrad Larson2009-11-25T15:35:50Z2009-11-25T15:35:50ZThis appears to be a duplicate of this question: <a href="http://stackoverflow.com/questions/632480/flipping-uiviews-from-top-bottom" rel="nofollow" title="flipping uiviews from top bottom">stackoverflow.com/questions/632480/…</a>http://stackoverflow.com/questions/1795329/iphone-mobile-application-developmentComment by Brad Larson on iPhone mobile application developmentBrad Larson2009-11-25T13:39:09Z2009-11-25T13:39:09ZStop asking the same question: <a href="http://stackoverflow.com/questions/1787333/iphone-mobile-application-development-closed" rel="nofollow" title="iphone mobile application development closed">stackoverflow.com/questions/1787333/…</a>http://stackoverflow.com/questions/1796744/how-to-save-data-in-nsuserdefaults-even-if-app-will-be-deleted/1796820#1796820Comment by Brad Larson on How to save data in NSUserDefaults even if app will be deleted?Brad Larson2009-11-25T13:35:21Z2009-11-25T13:35:21ZThere are some in-app purchase cases where you'd like to make sure that content remains unlocked if a user accidentally deletes the application from their device.http://stackoverflow.com/questions/1794116/motion-path-motion-guide-in-iphoneComment by Brad Larson on Motion Path / Motion Guide in iPhone ?Brad Larson2009-11-25T13:32:31Z2009-11-25T13:32:31ZThis should be a modification of that question, then, not a whole new one. In any case, you were given a good answer. There is very little that was Mac-specific in that answer.http://stackoverflow.com/questions/1571182/how-to-limit-a-uiimageview-to-move-in-a-specific-path/1571287#1571287Comment by Brad Larson on How to limit a UIImageView to move in a specific path?Brad Larson2009-11-25T13:31:13Z2009-11-25T13:31:13ZYes, the only thing I see in that code that doesn't exist on the iPhone is the NSRect structure used in one place. The remainder of the Core Animation code for moving the layer around a path is identical between Mac and iPhone.http://stackoverflow.com/questions/1789674/how-to-create-a-login-appliaction-for-iphone-without-others-frame-workComment by Brad Larson on how to create a login appliaction for iphone without others frame workBrad Larson2009-11-24T13:47:24Z2009-11-24T13:47:24ZWe're not here to write your application for you. Refine this to ask a more specific question.http://stackoverflow.com/questions/1788253/how-to-give-a-url-schema-to-access-a-application-in-iphone-osComment by Brad Larson on How to give a URL schema to access a application in iPhone OSBrad Larson2009-11-24T13:33:53Z2009-11-24T13:33:53ZDuncan Wilcox answered this for you in your previous question: <a href="http://stackoverflow.com/questions/1699912/calling-an-application-from-other-application/1700132#1700132" rel="nofollow" title="calling an application from other application">stackoverflow.com/questions/1699912/…</a> What's wrong with his answer?http://stackoverflow.com/questions/1789109/how-to-give-a-path-to-access-a-application-for-iphone-osComment by Brad Larson on How to give a path to access a application for iPhone OSBrad Larson2009-11-24T13:30:10Z2009-11-24T13:30:10ZThis is an exact duplicate of the question you just asked: <a href="http://stackoverflow.com/questions/1788253/how-to-give-a-url-schema-to-access-a-application-in-iphone-os" rel="nofollow" title="how to give a url schema to access a application in iphone os">stackoverflow.com/questions/1788253/…</a>