User Stephen Darlington - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T01:33:15Zhttp://stackoverflow.com/feeds/user/2998http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1776073/bash-for-filename-do/1776096#17760968Answer by Stephen Darlington for Bash: For Filename do...... Stephen Darlington2009-11-21T17:20:03Z2009-11-21T18:28:13Z<p>Fairly straightforward:</p>
<pre><code>for a in Sysbackup*.now;
do
[ -f $a ] && touch $(basename $a .now).bk ;
done
</code></pre>
http://stackoverflow.com/questions/1776045/how-to-detect-edit-mode-on-iphone-uitableview/1776083#17760830Answer by Stephen Darlington for How to detect edit mode on iphone UITableViewStephen Darlington2009-11-21T17:16:06Z2009-11-21T17:16:06Z<p>It is probably not working as you expect because <code>willBeginEditingRowAtIndexPath:</code> is called <em>before</em> the editing starts.</p>
<p>If you want to check while in another method you need the <code>editing</code> property:</p>
<pre><code>@property(nonatomic, getter=isEditing) BOOL editing
</code></pre>
<p>If you want to do something when the 'Edit' button is pressed you need to implement the setEditing method:</p>
<pre><code> - (void)setEditing:(BOOL)editing animated:(BOOL)animated
</code></pre>
<p>Which you'll find in <code>UIViewController</code>. (Well, that's the most likely place; there are others.)</p>
http://stackoverflow.com/questions/1762348/how-to-resume-view-stack-of-iphone-application/1762422#17624220Answer by Stephen Darlington for How to resume view stack of iphone applicationStephen Darlington2009-11-19T10:45:41Z2009-11-19T10:45:41Z<p>Unfortunately the iPhone doesn't do very much to help you here. I can't guarantee that this will be useful for you but this is how I do it.</p>
<p>In my app I have the following protocol:</p>
<pre><code>@protocol SaveState
- (NSData*) saveState;
- (id) initWithSaveState:(NSData*)data;
@end
</code></pre>
<p>Any <code>UIViewController</code> that I need to be able to save its state implements it.</p>
<p>In <code>applicationWillTerminate:</code> I have the following code:</p>
<pre><code>for (UIViewController* vc in self.navigationController.viewControllers) {
if ([vc conformsToProtocol:@protocol(SaveState)]) {
NSArray* state = [NSArray arrayWithObjects:NSStringFromClass([vc class]), [(UIViewController<SaveState>*)vc saveState], nil];
[vcList addObject:state];
}
}
</code></pre>
<p>I then save <code>vcList</code> to the <code>NSUserDefaults</code>. To restore the state I have this in <code>applicationDidFinishLaunching:</code>:</p>
<pre><code>for (NSArray* screen in screenList) {
UIViewController<SaveState>* next = [[NSClassFromString([screen objectAtIndex:0]) alloc] initWithSaveState:([screen count] == 2) ? [screen objectAtIndex:1] : nil];
if (next != nil) {
[[self navigationController] pushViewController:next animated:NO];
[next release];
}
else {
// error handling
}
}
</code></pre>
http://stackoverflow.com/questions/1746988/how-to-add-paid-app-link-in-free-app-in-iphone/1748143#17481431Answer by Stephen Darlington for How to add paid app link in free app in iphoneStephen Darlington2009-11-17T11:10:55Z2009-11-17T11:10:55Z<p>It's been a while since I did this so I may be mistaken, but don't you get an Application ID when you create a new app in iTunes Connect? In that case, all you need to do is create a new app but tell iTC that you're going to upload a binary later. You can use the App ID to create your link.</p>
http://stackoverflow.com/questions/1593956/iphone-uiwebview-bug/1721676#17216760Answer by Stephen Darlington for iPhone UIWebView BugStephen Darlington2009-11-12T11:50:29Z2009-11-12T11:50:29Z<p>If you only see this error when you put a breakpoint in <code>webViewDidFinishLoad:</code> I don't think that this is a problem.</p>
<p>On the other hand, if you see it when your code is running normally then it <em>is</em> a problem. You may need to break out the parsing of the XML file into a separate thread or, at least, decouple it from the web view.</p>
http://stackoverflow.com/questions/1715253/adhoc-app-installation-failed-in-iphone-why/1715479#17154791Answer by Stephen Darlington for adhoc app installation failed in iPhone , why ?Stephen Darlington2009-11-11T14:24:13Z2009-11-11T14:24:13Z<p>Looks as though your provisioning profile is duff in some way. Here's now I normally work around the problem:</p>
<ol>
<li>Delete your whole build folder. Clean All <em>should</em> do this for you but does seem to leave bits behind from time to time</li>
<li>Check the device ID in the Developer Center. Edit it if you need to.</li>
<li>Download the profile again.</li>
<li>Install the profile again.</li>
<li>Quit XCode and reload.</li>
<li>Make sure you've set XCode to use the new, ad hoc profile rather than your developer profile</li>
<li>Build</li>
<li>Take a copy of the executable straight away</li>
</ol>
<p>It would be neat if there was some way of finding which step went wrong, but until that happens it's usually best just to start from scratch unless you have very patient (or local) testers.</p>
http://stackoverflow.com/questions/1715347/bash-script-always-true/1715430#17154302Answer by Stephen Darlington for Bash script always trueStephen Darlington2009-11-11T14:16:47Z2009-11-11T14:16:47Z<p>Probably becasue <code>grep "processName"</code> finds itself. I found this self same problem yesterday, except I was <code>xarg</code>ing the results to <code>kill</code>...</p>
<p>As an alternative you might like to try the <code>pgrep</code> command instead of your string of <code>ps</code> and various <code>grep</code>s:</p>
<pre><code>sd@camel:~$ pgrep bash
415
3477
sd@camel:~$ echo $?
0
sd@camel:~$ pgrep arf
sd@camel:~$ echo $?
1
</code></pre>
http://stackoverflow.com/questions/1715290/attach-xcode-debugger/1715355#17153551Answer by Stephen Darlington for Attach XCode DebuggerStephen Darlington2009-11-11T14:02:28Z2009-11-11T14:02:28Z<p>You can, however, get XCode to connect to an application the next time it's launched. You bring up the inspector on your executable and check the "Wait for next launch/push notification" box. This is explained in more detail <a href="http://stackoverflow.com/questions/1239000/debugging-app-when-launched-by-push-notification/1239555#1239555">here</a>.</p>
<p>The other alternative would be to use a <code>UIWebView</code> inside your app rather than switching to Safari.</p>
http://stackoverflow.com/questions/1708024/batch-job-dependencies-using-open-source-free-software/1708068#17080680Answer by Stephen Darlington for Batch Job Dependencies Using Open Source/Free SoftwareStephen Darlington2009-11-10T13:45:58Z2009-11-10T13:45:58Z<p>I <a href="http://stackoverflow.com/questions/37851/application-control-scripts-on-unix">asked a similar question</a> last year (maybe Serverfault would be a better place these days?). There doesn't seem to be a simple, install-and-go solution unfortunately.</p>
http://stackoverflow.com/questions/1707253/what-exactly-nsurlconnection-asynchronous-means/1707712#17077120Answer by Stephen Darlington for what exactly NSUrlConnection ASynchronous means ?Stephen Darlington2009-11-10T12:47:54Z2009-11-10T12:47:54Z<p>It seems that you're conflating synchronous/asynchronous connections and threading. In my app I used asynchronous connections as an alternative to threading.</p>
<p>Let's say you want to download a big file without causing the UI to freeze. You have two basic options:</p>
<ol>
<li><p>Asynchronous connection. You start with <code>+ connectionWithRequest:delegate:</code> (or one of the other non-autorelease options) and it downloads bits of the file, calling your delegate when interesting thing happen. The runloop is still going, so your UI stays responsive. Of course you have to be careful that your delegate don't go out of scope.</p></li>
<li><p>Synchronous. You start the connection with <code>+ sendSynchronousRequest:returningResponse:error:</code> but the code waits until the download is complete. You'll really need to spawn a new thread (or one of the higher level threading operations that Cocoa supports) or the UI will block.</p></li>
</ol>
<p>Which option is "best" or the least painful will depend on the architecture of your application and what you're trying to achieve. If you need to create a thread for a long running process anyway, you might go with the second option. In general I would say the first option is easiest.</p>
<p>It's all pretty well <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/URLLoadingSystem/index.html#//apple%5Fref/doc/uid/10000165i" rel="nofollow">documented on Apple's Developer site</a>.</p>
http://stackoverflow.com/questions/1700722/question-on-sqlite-functions/1700787#17007870Answer by Stephen Darlington for question on sqlite functionsStephen Darlington2009-11-09T12:46:45Z2009-11-09T12:46:45Z<p>For the full answer, as <em>ddaa</em> notes, <a href="http://sqlite.org/c3ref/intro.html" rel="nofollow">check out the documentation</a>. In summary:</p>
<p><code>sqlite3_step</code>: this <em>steps</em> through a prepared SQL statement, returning a new row each time it called.</p>
<p><code>NSAssert1</code>: This is not a SQLite function, but is in Foundation. It "<a href="http://developer.apple.com/mac/library/documentation/cocoa/reference/Foundation/Miscellaneous/Foundation%5FFunctions/Reference/reference.html#//apple%5Fref/doc/uid/20000055-BCIJFJGG" rel="nofollow">Generates an assertion if a given condition is false</a>."</p>
<p><code>sqlite3_finalize</code>: Says you're done with this prepared statement. Any memory used for the process of this statement may be dealloced (though sometimes SQLite waits until a more convenient time).</p>
http://stackoverflow.com/questions/1687144/structure-as-a-class-member-in-objective-c/1687353#16873531Answer by Stephen Darlington for Structure as a class member in Objective CStephen Darlington2009-11-06T12:44:46Z2009-11-06T12:44:46Z<p>You just use dot notation to assign and access the values. You can also use <code>-></code> if you have a pointer to a struct.</p>
<pre><code>typedef struct {
int a;
double b;
} SomeType;
// Define some class which uses SomeType
SomeType myVar;
myVar.a = 1;
myVar.b = 1.0;
SomeType* myPtr = &myVar;
NSLog (@"%i", myPtr->a);
// This works...
SomeType mySecondVar = myVar;
// But you have to be careful in cases where you have pointers rather than values.
// So this wouldn't work if either element was a C string or an array.
</code></pre>
http://stackoverflow.com/questions/1679725/should-i-rely-on-clang-static-analyser-or-instruments/1679749#16797494Answer by Stephen Darlington for Should I rely on Clang Static Analyser or Instruments ?Stephen Darlington2009-11-05T10:49:50Z2009-11-05T10:49:50Z<p>They're complimentary tools that spot problems in your code in two very different ways. You should use both.</p>
http://stackoverflow.com/questions/1556096/saving-interface-builder-changes-when-building-in-xcode/1573223#15732231Answer by Stephen Darlington for Saving Interface Builder Changes when building in XCodeStephen Darlington2009-10-15T15:46:11Z2009-11-04T14:22:25Z<p>Someone else asked pretty much the <a href="http://stackoverflow.com/questions/1568930">same question</a> (link from <a href="http://twitter.com/balanon" rel="nofollow">@balanon</a>). The answer by <a href="http://stackoverflow.com/questions/1568930/interface-builder-and-xcode-integration-not-working/1571690#1571690">irsk</a>:</p>
<blockquote>
<p>Bizarrely, it seems to be caused by
opening your project using the File >
Open Recent Project menu in Xcode, or
by using the Recent Documents list in
the Xcode welcome screen.</p>
<p>If I double-click the project file in
the Finder to open it or choose the
project from the Recent Items menu in
the Apple menu, Xcode's connection to
Interface Builder is intact.</p>
</blockquote>
<p>Here's my original answer:</p>
<p>Do you both have the same version of Xcode? I note that since I moved to Snow Leopard and Xcode 3.2 the link between Xcode and Interface Builder is not as robust as it was with earlier versions. This seems fairly widespread -- I've seen quite a few complains on Twitter at least -- and so hope that Apple fix this.</p>
http://stackoverflow.com/questions/1636110/all-product-identifiers-are-invalid-in-my-in-app-purchase-application/1636167#16361670Answer by Stephen Darlington for all product identifiers are invalid in my ' in app purchase' applicationStephen Darlington2009-10-28T09:47:34Z2009-10-31T14:02:55Z<p>This confused me for a while too.</p>
<p>You need to enable the "Cleared for Sale" setting. When you've done this it will be available from the sandbox store -- you created an "In App Purchase Test User" in iTunes Connect, right?</p>
<p>The other confusing bit is that you have to log out of iTunes on your handset before starting your application. You do this by going into the App Store program, clicking your account (the bottom button on the Featured tab), and then pressing the Sign Out button.</p>
<p>Note that this only works on the handset and not in the iPhone simulator.</p>
<p>After you do this you will still need approve it before it goes live on the store for real.</p>
http://stackoverflow.com/questions/1597459/can-i-identify-a-jailbroken-phone-from-the-crash-logs2Can I identify a jailbroken phone from the crash logs?Stephen Darlington2009-10-20T21:33:47Z2009-10-29T15:16:23Z
<p>A number of the hardest to track-down problems I've come across with my iPhone application have only exposed themselves on jailbroken handsets. Is there a way to detect these handsets looking only at the crash logs?</p>
<p>This is kind of like <a href="http://stackoverflow.com/questions/413242/how-do-i-detect-that-an-sdk-app-is-running-on-a-jailbroken-phone">this question</a> but after the event rather than during... </p>
http://stackoverflow.com/questions/1589724/advantage-of-data-type-id-vs-nsstring-in-objective-c/1589810#15898104Answer by Stephen Darlington for Advantage of data type id vs NSString in Objective C?Stephen Darlington2009-10-19T16:47:42Z2009-10-19T16:53:47Z<p>Arguably the former code is incorrect. You should only really use the dot notation to get/set properties, and <code>lowercaseString</code> is a method.</p>
<p>Otherwise, as you suggest, the only real difference is type safety. If you had a typo, say you put <code>[a loercaseString]</code>, the compiler wouldn't shout at you.</p>
<p>There are certainly cases where you'd use <code>id</code> but your example is not one of them</p>
http://stackoverflow.com/questions/1589804/iphone-interaction-between-pc-app-and-iphone-app-using-usb/1589838#15898381Answer by Stephen Darlington for iPhone interaction between PC app and iPhone app using USBStephen Darlington2009-10-19T16:52:16Z2009-10-19T16:52:16Z<p>You want the <a href="http://developer.apple.com/iphone/library/documentation/ExternalAccessory/Reference/ExternalAccessoryFrameworkReference/index.html" rel="nofollow">External Accessory Framework</a>. Having said that, I'm not sure that Apple's intention was for you to communicate with an application on a PC/Mac. It's really for talking to accessories such as iPod docks, remote controls, etc. Apple may not allow an application that talks to a PC in this manner in the App Store.</p>
http://stackoverflow.com/questions/1561261/cocoa-touch-core-data-compiler-cannot-find-the-nsmanagedobjectcontext-other/1561342#15613423Answer by Stephen Darlington for Cocoa-Touch, Core Data: Compiler cannot find the NSManagedObjectContext (+ other core data classes)Stephen Darlington2009-10-13T16:21:49Z2009-10-13T16:21:49Z<p>This got me the first time I tried it too. The header files for Core Data are <code>#import</code>ed in the sample projects precompiled header file (<code>Locations_Prefix.pch</code>). You just need to copy that line into your app too.</p>
<p>You should be able to guess the line, but it's this:</p>
<pre><code>#import <CoreData/CoreData.h>
</code></pre>
<p>I guess it's a handy place to put it, but a bit obscure for demonstration purposes!</p>
http://stackoverflow.com/questions/1538901/the-binary-you-uploaded-was-invalid-the-signature-was-invalid-or-it-was-not-sig/1538967#15389670Answer by Stephen Darlington for The binary you uploaded was invalid. The signature was invalid, or it was not signed Stephen Darlington2009-10-08T16:31:51Z2009-10-08T16:31:51Z<p>When I get this I try the following (usually in this order) before building again:</p>
<ol>
<li>Restart Xcode</li>
<li>Clean all</li>
<li>Clean all and delete anything related to the app in the build directory</li>
<li>Clean all and delete the whole build directory</li>
</ol>
<p>The next step would probably be "restart Mac" (and finally "panic") but I've never got that far.</p>
http://stackoverflow.com/questions/1530725/how-do-you-convince-upper-management-that-something-cant-be-done/1530954#15309544Answer by Stephen Darlington for How do you convince upper management that something can’t be done?Stephen Darlington2009-10-07T11:07:01Z2009-10-07T11:07:01Z<p>They key is that they don't care about the technology (this you already know) so you have to explain why it's impossible in terms that they <em>do</em> care about:</p>
<ul>
<li>Risk</li>
<li>Dependencies</li>
<li>Cost</li>
<li>Time scales</li>
</ul>
<p>When people ask for a change they normally think of the benefits but not the downsides. What might break if it goes wrong? Will it be slower or harder to use if you hack together a solution? They usually hate the word "regression."</p>
<p>It's all well and good you committing to finishing some work on a particular schedule but are other teams working to the same timescales? Do you need anything from them before you can start? Are you going to waste a day if a DBA won't change a database view for you?</p>
<p>The last two are kind of the same unless you use some specialised equipment or need more gear to get the job done. Obviously you can't explain very low level changes, you <em>can</em> show why something is harder than it first appears. "This button affects this... and that... then this screen will need updating... plus the database and the reports..." People don't always consider the full magnitude until it's spelt out.</p>
<p>Finally, are the requirements well defined? If not you can document what you will deliver on time and consider anything else as a "change request" that will take extra time.</p>
<p>The danger with some of this is that you'll get a reputation as being unhelpful or negative, which means that it's very important to deliver on your promises. If you offer workable alternatives, make sure they really do work and are delivered on time. If you say you need an extra week, make sure it really does take a week or less. You're only unhelpful and negative if you're consistently wrong.</p>
http://stackoverflow.com/questions/1520674/excbadaccess-in-uiwebview/1520817#15208174Answer by Stephen Darlington for EXC_BAD_ACCESS in UIWebViewStephen Darlington2009-10-05T15:34:47Z2009-10-05T15:34:47Z<p>The scenario goes something like this:</p>
<ol>
<li>User enters screen with <code>UIWebView</code>. The <code>UIViewController</code> sets <code>self</code> as the delegate</li>
<li>Web page starts downloading</li>
<li>User exits screen
3a. <code>UIViewController</code> gets deallocated</li>
<li><code>UIWebView</code> finishes loading and sends "I finished" message to its delegate...</li>
</ol>
<p>You need to stop the <code>UIWebView</code> from loading its page and sets its delegate to nil before you deallocate the delegate.</p>
http://stackoverflow.com/questions/1487731/defining-nsmutablestring/1487953#14879530Answer by Stephen Darlington for Defining NSMutableString?Stephen Darlington2009-09-28T16:17:58Z2009-09-28T16:17:58Z<p>You're correct on all your points!</p>
<p>I'm not sure how big a difference the size/capacity hint makes, but more information should certainly allow the run-time make better decisions.</p>
<p>Why use one style over the other? Well, when are autoreleased objects released? There are two non-obvious reasons why it might matter. First, when a method uses a lot of memory that you can release immediately. (You could also use a local autorelease pool I guess.) Secondly, I find that using autorelease can hide memory leaks and make debugging some code more difficult. Your mileage may vary depending on the age and quality of the code.</p>
<p>When I first started developing iPhone apps I used autoreleased objects all the time. It was convenient because I didn't fully understand how it all worked and it usually did the right thing. These days I tend to err on the side of manually deallocating memory. It really isn't that hard when you actually understand how the reference counting works and forces the issue immediately when you don't.</p>
http://stackoverflow.com/questions/1431895/objective-c-equivalent-to-javascripts-settimeout/1431955#14319555Answer by Stephen Darlington for Objective C equivalent to javascripts setTimeout?Stephen Darlington2009-09-16T09:31:48Z2009-09-16T12:31:53Z<p>There are a number of options.</p>
<p>The quickest to use is in <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSObject%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000050-performSelector%5FwithObject%5FafterDelay%5F" rel="nofollow"><code>NSObject</code></a>:</p>
<pre><code>- (void)performSelector:(SEL)aSelector withObject:(id)anArgument afterDelay:(NSTimeInterval)delay
</code></pre>
<p>(There are a few others with slight variations.)</p>
<p>If you want more control or to be able to say send this message every thirty seconds you probably need <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer%5FClass/Reference/NSTimer.html" rel="nofollow"><code>NSTimer</code></a>.</p>
http://stackoverflow.com/questions/1423481/iphone-marking-an-icon-or-button-with-a-number-to-indicate-new-activity-like-mai/1423508#14235082Answer by Stephen Darlington for IPhone- marking an icon or button with a number to indicate new activity like mail appStephen Darlington2009-09-14T19:42:22Z2009-09-14T19:42:22Z<p>It depends on what interface element you're using. If you're using a tab tab (<code>UITabBar</code>) you'll find that <code>UITabBarItem</code>s have a <code>badgeValue</code> property that you can set to some text to display in a red circle as you describe. Unfortunately you might have to do it "by hand" if you're using a different element.</p>
http://stackoverflow.com/questions/1422484/sqlite-behaviour-on-insert-on-iphone/1422556#14225562Answer by Stephen Darlington for SQLite behaviour on INSERT on iPhoneStephen Darlington2009-09-14T16:17:16Z2009-09-14T16:17:16Z<p>You're only inserting one row here so there's a lot of boilerplate code. Think what would happen if you wanted to insert multiple rows:</p>
<ul>
<li>You'd still need a single prepare statement</li>
<li>You'd still need a single finalise statement</li>
<li>You'd need one step statement for each row you want to add. You can kind of think of "step" as being "execute" (or "get next row" if you're looking at a SELECT statement)</li>
</ul>
<p>By the way, you probably don't want to "step" if the prepared statement failed. </p>
http://stackoverflow.com/questions/1421001/iphone-transfering-large-dataset-from-desktop-to-device-via-syncing-via-itunes/1421048#14210480Answer by Stephen Darlington for iPhone. Transfering large dataset from desktop to device via syncing via iTunes.Stephen Darlington2009-09-14T11:41:41Z2009-09-14T11:41:41Z<p>The bad news is that there is no way to hook into the iTunes sync process. There are no public APIs at least.</p>
<p>Of course there are other options. Off the top of my head:</p>
<ul>
<li>A server in your iPhone application that an app on your PC can connect to (or vice versa). Of course you'd have to write the app, possibly for both Windows and Mac</li>
<li>Distribute the 1Gb of data with your app but in a highly compressed format. Extract on first run</li>
<li>There are new APIs in 3.x that allow access to the dock connector. They're really for connecting to peripherals rather than a PC but you might be able to get it working. You'd need to check the small-print to make sure that Apple would allow it</li>
</ul>
<p>Once you have the data, Core Data is an obvious candidate for processing it.</p>
http://stackoverflow.com/questions/1385433/is-calling-self-release-allowed-to-control-object-lifetime/1385567#13855671Answer by Stephen Darlington for Is calling [self release] allowed to control object lifetime?Stephen Darlington2009-09-06T12:30:45Z2009-09-06T12:30:45Z<p>To quote the great philosopher Alicia Silverstone, "<a href="http://www.quotegeek.com/index.php?action=viewcategory&categoryid=662" rel="nofollow">I had an overwhelming sense of ickiness</a>" when I read that. But I couldn't really tell you why.</p>
<p>I think I would use <code>autorelease</code> rather than a simple <code>release</code> since you're still executing code in <code>self</code> when you call it, but other than that I can't think of any technical reasons why it wouldn't work.</p>
http://stackoverflow.com/questions/1378058/do-i-have-to-copy-and-autorelease-this-string/1378110#13781101Answer by Stephen Darlington for Do I have to copy and autorelease this string?Stephen Darlington2009-09-04T09:13:49Z2009-09-04T09:13:49Z<p>I think your understanding of how it's supposed to work is correct and (by inspection at least) your code looks right too. </p>
<p>My guess is that the debugger is not telling the whole truth, perhaps related to compiler optimisation levels or similar.</p>
http://stackoverflow.com/questions/1356950/how-to-disable-iphone-ui/1356976#13569764Answer by Stephen Darlington for How to disable iphone UI?Stephen Darlington2009-08-31T11:18:23Z2009-08-31T11:18:23Z<p>You can enable/disable controls using the <code>enable</code> property but what you really want is transparent overlay and a "Processing" message. That's answered here: <a href="http://stackoverflow.com/questions/593147/how-to-display-a-progress-indicator-overlay-hud-on-iphone">How to display a progress indicator overlay/HUD on iPhone</a>?</p>
http://stackoverflow.com/questions/1825597/objective-c-error-expected-asm-or-attribute-before-classComment by Stephen Darlington on Objective-C error: expected '=', ',', ';', 'asm' or '__attribute__' before 'class'Stephen Darlington2009-12-01T11:41:19Z2009-12-01T11:41:19ZYou might want to post some code. It's difficult to determine the problem in the abstract.http://stackoverflow.com/questions/1776073/bash-for-filename-do/1776096#1776096Comment by Stephen Darlington on Bash: For Filename do...... Stephen Darlington2009-11-21T18:29:33Z2009-11-21T18:29:33ZI added the check for the file before the <code>touch</code> command. (I did have that line in originally but removed it! Doh!)http://stackoverflow.com/questions/1757309/writing-iphone-apps-on-linux-what-tools-do-you-needComment by Stephen Darlington on Writing iPhone apps on linux - What tools do you needStephen Darlington2009-11-18T17:19:12Z2009-11-18T17:19:12ZIt's a duplicate. See <a href="http://stackoverflow.com/questions/1741675/how-to-do-iphone-development-using-linux-system" rel="nofollow" title="how to do iphone development using linux system">stackoverflow.com/questions/1741675/…</a> and <a href="http://stackoverflow.com/questions/1492378/development-of-iphone-application-in-linux" rel="nofollow" title="development of iphone application in linux">stackoverflow.com/questions/1492378/…</a> and <a href="http://stackoverflow.com/questions/276907/starting-iphone-app-development-in-linux" rel="nofollow" title="starting iphone app development in linux">stackoverflow.com/questions/276907/…</a>.http://stackoverflow.com/questions/1593956/iphone-uiwebview-bug/1721609#1721609Comment by Stephen Darlington on iPhone UIWebView BugStephen Darlington2009-11-12T11:53:09Z2009-11-12T11:53:09ZPlease upvote or comment rather than adding a "me too" answer. http://stackoverflow.com/questions/1721596/uiwebview-shows-error-messageComment by Stephen Darlington on UIWebView shows error messageStephen Darlington2009-11-12T11:51:07Z2009-11-12T11:51:07ZPlease upvote other questions rather than opening new, duplicate ones (<a href="http://stackoverflow.com/questions/1593956/iphone-uiwebview-bug/1721676#1721676" rel="nofollow" title="iphone uiwebview bug">stackoverflow.com/questions/1593956/…</a>)http://stackoverflow.com/questions/1715253/adhoc-app-installation-failed-in-iphone-whyComment by Stephen Darlington on adhoc app installation failed in iPhone , why ?Stephen Darlington2009-11-11T14:19:06Z2009-11-11T14:19:06Z@lazarus Nope. They just need to pass on their devices ID so that it can be added to the ad hoc provisioning profile that the app is built with.http://stackoverflow.com/questions/1599634/is-there-any-way-that-we-can-develop-application-in-net-for-iphoneComment by Stephen Darlington on is there any way that we can develop application in .net for iphone Stephen Darlington2009-10-21T10:50:03Z2009-10-21T10:50:03ZIs it really necessary to ask minor variations of the same question three times? See also: <a href="http://stackoverflow.com/questions/1599634/is-there-any-way-that-we-can-develop-application-in-net-for-iphone" rel="nofollow" title="is there any way that we can develop application in net for iphone">stackoverflow.com/questions/1599634/…</a> and <a href="http://stackoverflow.com/questions/1599820/development-of-iphone-applications" rel="nofollow" title="development of iphone applications">stackoverflow.com/questions/1599820/…</a>http://stackoverflow.com/questions/1599820/development-of-iphone-applicationsComment by Stephen Darlington on development of iphone applicationsStephen Darlington2009-10-21T10:09:42Z2009-10-21T10:09:42ZIs this supposed to be an advert?http://stackoverflow.com/questions/1599693/iphone-sdk-creating-an-image-of-the-contents-of-the-screen/1599742#1599742Comment by Stephen Darlington on iphone sdk: Creating an image of the contents of the screen?Stephen Darlington2009-10-21T09:48:23Z2009-10-21T09:48:23ZExcept that's not in the API documentation. Apple may not allow an application that uses an undocumented API in the App Store.http://stackoverflow.com/questions/1589724/advantage-of-data-type-id-vs-nsstring-in-objective-c/1589810#1589810Comment by Stephen Darlington on Advantage of data type id vs NSString in Objective C?Stephen Darlington2009-10-19T21:23:36Z2009-10-19T21:23:36ZNo worries. You don't normally expect people to deliberately write typos!http://stackoverflow.com/questions/368062/create-provisioning-profile-in-iphone-application/368102#368102Comment by Stephen Darlington on Create provisioning profile in iphone applicationStephen Darlington2009-10-16T16:03:58Z2009-10-16T16:03:58ZI wouldn't disagree that it's a frustrating process. Unfortunately the question gives no information about what options had been tried, what had succeeded, what had failed, error messages and so forth. How can you diagnose a problem when someone just says "it's broken"?http://stackoverflow.com/questions/1575965/transition-an-existing-paid-for-app-to-free-version-with-in-app-purchase/1576058#1576058Comment by Stephen Darlington on Transition an existing paid for app to free version with In App PurchaseStephen Darlington2009-10-16T09:26:44Z2009-10-16T09:26:44ZI thought about this but realised that if someone deleted your app and reinstalled it they'd revert back to the "lite" version. Maybe this happens infrequently but I'd be annoyed if it happened to me.http://stackoverflow.com/questions/1569967/how-to-add-uitableviewcellaccessorycheckmark-in-the-middle-of-the-cell-in-iphone/1570460#1570460Comment by Stephen Darlington on how to add UITableViewCellAccessoryCheckmark in the middle of the cell in iphone?Stephen Darlington2009-10-15T16:16:19Z2009-10-15T16:16:19ZAgreed that it's not something you'd normally want to do but I found one case where I needed to do it: I wanted to have both a checkmark and an alphabetical index on the right of the screen. I ended up using a custom view to put the check mark on the left.http://stackoverflow.com/questions/1553028/how-to-append-querystring-in-url-using-objective-c/1553138#1553138Comment by Stephen Darlington on How to append querystring in url using objective c ?Stephen Darlington2009-10-12T07:31:40Z2009-10-12T07:31:40ZOf course you'd want to encode your username and password before passing outside your app...http://stackoverflow.com/questions/1531370/automated-download-scriptComment by Stephen Darlington on Automated download scriptStephen Darlington2009-10-07T12:55:33Z2009-10-07T12:55:33ZDo you mean that aria2c is the program that does the downloading or that you want the files downloading and then execute aria2c after getting each one?