User Chris Lundie - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T13:44:07Zhttp://stackoverflow.com/feeds/user/20685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1052958/iphone-sdk-3-0-vs-2-2-1/1053851#10538513Answer by Chris Lundie for iPhone SDK 3.0 Vs. 2.2.1Chris Lundie2009-06-27T23:28:53Z2009-06-27T23:28:53Z<p>Instead of checking the OS version, you can check if the cell has the new property:</p>
<pre><code>if ([cell respondsToSelector:@selector(textLabel)]) {
// Do it the 3.0 way
cell.textLabel.text = @"...";
} else {
// Do it the 2.2 way, but avoid deprecation warning
[cell performSelector:@selector(setText:) withObject:@"..."];
}
</code></pre>
http://stackoverflow.com/questions/987737/question-about-iphone-app-bundle-reasonable-size-for-app-store-storage-memory/988814#9888141Answer by Chris Lundie for Question about IPhone app bundle reasonable size for App Store. Storage memory!Chris Lundie2009-06-12T20:12:25Z2009-06-12T20:12:25Z<p>iTunes Connect developer guide says there is a hard limit of 2 GB.</p>
http://stackoverflow.com/questions/940880/how-to-run-javascript-on-the-server/941565#9415651Answer by Chris Lundie for How to run javascript on the serverChris Lundie2009-06-02T19:55:12Z2009-06-02T19:55:12Z<p><a href="http://googlegeodevelopers.blogspot.com/2009/05/announcing-google-maps-api-v3.html" rel="nofollow">Google Maps API v3</a> has support for iPhone web apps, and iPhone OS 3.0 has Google Maps support for native apps. Both are a bit bleeding-edge and not quite complete yet, as I write this.</p>
http://stackoverflow.com/questions/922811/capturing-network-traffic-while-the-application-is-running-on-iphone-and-connecte/922986#9229861Answer by Chris Lundie for Capturing network traffic while the application is running on iPhone and connected to xcodeChris Lundie2009-05-28T20:28:40Z2009-05-28T20:28:40Z<p>On your computer, run an HTTP debugging proxy like <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a> (Mac) or <a href="http://www.fiddler2.com/" rel="nofollow">Fiddler2</a> (Windows). In the phone's wi-fi settings, turn on the HTTP proxy, entering your computer's IP address and the port number of the proxy. Make the sure the proxy is configured to allow connections from your phone. (It may allow localhost-only by default.)</p>
http://stackoverflow.com/questions/907272/how-do-i-detect-a-touch-in-the-iphone-status-bar/907328#9073281Answer by Chris Lundie for How do I detect a touch in the iPhone status bar?Chris Lundie2009-05-25T16:32:39Z2009-05-25T16:32:39Z<p>It should be happening automatically unless you set the scrollsToTop property to NO.</p>
http://stackoverflow.com/questions/899640/is-there-a-way-to-put-a-scalar-type-like-cgpoint-or-any-self-created-into-a-nsa/899811#8998110Answer by Chris Lundie for Is there a way to put a scalar type like CGPoint (or any self created) into a NSArray?Chris Lundie2009-05-22T20:20:26Z2009-05-22T20:20:26Z<p>You can box a CGPoint value into an NSValue object. It is documented in <a href="http://developer.apple.com/iphone/library/documentation/uikit/reference/NSValue%5FUIKit%5FAdditions/Reference/Reference.html" rel="nofollow">NSValue UIKit Additions Reference</a>.</p>
http://stackoverflow.com/questions/853253/profile-doesnt-match-application-identifier/853487#8534873Answer by Chris Lundie for profile doesn't match application identifierChris Lundie2009-05-12T15:51:06Z2009-05-12T15:51:06Z<p>Usually you would use just "com.gfeed.ride" as your identifier, and XCode will automatically take care of the "49776ZQRBG" part.</p>
http://stackoverflow.com/questions/848339/iphone-fmdb-cant-find-table/848546#8485461Answer by Chris Lundie for iphone FMDB can't find tableChris Lundie2009-05-11T15:04:12Z2009-05-11T15:04:12Z<p>To get the path to your file in the app bundle, use this:</p>
<pre><code>[[NSBundle mainBundle] pathForResource:@"base" ofType:@"sqlite"];
</code></pre>
<p>To actually open the database, you may have to copy it to the Documents directory first, because trying to modify a file in your app bundle is bad news.</p>
http://stackoverflow.com/questions/841042/detect-when-uitableviewcell-goes-off-the-screen/841859#8418590Answer by Chris Lundie for Detect when UITableViewCell goes off the screenChris Lundie2009-05-08T21:22:00Z2009-05-08T21:22:00Z<p>I think I would try periodically checking the indexPathsForVisibleRows property of the UITableView. From the largest index path, you can deduce that all previous rows have been scrolled past.</p>
http://stackoverflow.com/questions/839242/iphone-how-to-put-settings-bundle-seen-through-system-settings-app-into-your-ow/840692#8406922Answer by Chris Lundie for iPhone - how to put Settings bundle seen through System Settings App into your own App?Chris Lundie2009-05-08T16:31:21Z2009-05-08T16:31:21Z<p>Craig Hockenberry has a project called <a href="http://furbo.org/2009/04/30/matt-gallagher-deserves-a-medal/" rel="nofollow">GenericTableViews</a> that helps you easily make a table view for settings or forms.</p>
http://stackoverflow.com/questions/838893/my-nsdateformatter-works-only-in-the-iphone-simulator/840051#8400510Answer by Chris Lundie for my NSDateFormatter works only in the iPhone simulator Chris Lundie2009-05-08T14:27:50Z2009-05-08T14:27:50Z<p>When I've parsed a date string with "GMT" at the end, I've used the "zzz" format, not "Z".</p>
http://stackoverflow.com/questions/820570/how-would-you-implement-an-scrollable-grid-in-your-iphone-app/820809#8208091Answer by Chris Lundie for How would you implement an scrollable grid in your iPhone app?Chris Lundie2009-05-04T16:30:40Z2009-05-04T16:30:40Z<p>The <a href="http://github.com/joehewitt/three20/tree/master" rel="nofollow">three20 library</a> has a class that does this.</p>
http://stackoverflow.com/questions/820127/whats-the-point-of-app-ids-and-provisioning-profiles/820644#8206441Answer by Chris Lundie for What's the point of App ID's and Provisioning Profiles?Chris Lundie2009-05-04T15:45:34Z2009-05-04T15:45:34Z<p>The provisioning profile contains a list of devices that are allowed to run or debug your code. Everything is verified with a digital signature, which ultimately lets Apple control distribution. This is why you need to jailbreak in order to get apps from sources outside the App Store.</p>
http://stackoverflow.com/questions/804563/how-to-hide-the-keyboard-when-empty-area-is-touched-on-iphone/804812#8048122Answer by Chris Lundie for how to hide the keyboard when empty area is touched on iphoneChris Lundie2009-04-29T23:44:11Z2009-04-29T23:44:11Z<p>Send <code>resignFirstResponder</code> to the control.</p>
http://stackoverflow.com/questions/803676/encode-nsstring-for-xml-html/803914#8039144Answer by Chris Lundie for Encode NSString for XML/HTMLChris Lundie2009-04-29T19:34:24Z2009-04-29T19:34:24Z<p>I use <a href="http://code.google.com/p/google-toolbox-for-mac/" rel="nofollow">Google Toolbox for Mac</a> (works on iPhone). In particular, see the additions to NSString in <a href="http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/GTMNSString%2BHTML.h" rel="nofollow">GTMNSString+HTML.h</a> and <a href="http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/GTMNSString%2BXML.h" rel="nofollow">GTMNSString+XML.h</a>.</p>
http://stackoverflow.com/questions/787582/nsrequest-encode-url-for-nsrequest-post-body-iphone-objective-c/790275#7902752Answer by Chris Lundie for NSRequest - encode url for NSRequest POST Body (iPhone objective-C)Chris Lundie2009-04-26T05:12:55Z2009-04-26T05:12:55Z<p>I don't know if this solves your problem, but</p>
<pre><code>[parameterString length]
</code></pre>
<p>is often not be equal to the length of</p>
<pre><code>[parameterString dataUsingEncoding:NSUTF8StringEncoding]
</code></pre>
<p>because UTF8 encodes characters with varying numbers of bytes.</p>
http://stackoverflow.com/questions/786451/what-do-i-have-to-consider-in-an-multiview-application-when-it-comes-to-low-memo/787045#7870450Answer by Chris Lundie for What do I have to consider in an multiview-application, when it comes to low memory warnings?Chris Lundie2009-04-24T18:30:05Z2009-04-24T18:30:05Z<p>When a view controller gets a memory warning, and the view is off-screen, it may set the view property to nil. But that won't release any subviews that you might be retaining in other properties. So here's how you can handle that:</p>
<pre><code>- (void)setView:(UIView *)view
{
[super setView:view];
if (view == nil)
{
// Release-and-nil any subviews that you might be retaining.
}
}
</code></pre>
http://stackoverflow.com/questions/786214/how-can-i-get-current-scroll-position-on-uiwebview/786826#7868264Answer by Chris Lundie for How can I get current scroll position on UIWebViewChris Lundie2009-04-24T17:23:09Z2009-04-24T17:23:09Z<p>This trick works for me.</p>
<pre><code>UIWebView *webView;
int scrollPosition = [[webView stringByEvaluatingJavaScriptFromString:@"window.pageYOffset"] intValue];
</code></pre>
http://stackoverflow.com/questions/778632/am-i-always-responsible-for-didreceivememorywarning-being-invoked-by-the-iphone-o/778838#7788381Answer by Chris Lundie for Am I always responsible for didReceiveMemoryWarning being invoked by the iPhone OS?Chris Lundie2009-04-22T19:37:08Z2009-04-22T19:37:08Z<p>Memory warnings can happen at any time. There are apps running in the background, like Mail and Safari, doing who-knows-what.</p>
http://stackoverflow.com/questions/777514/whats-the-biggest-and-most-frequented-forum-board-for-iphone-development/778509#7785092Answer by Chris Lundie for what's the biggest and most frequented forum/board for iphone development?Chris Lundie2009-04-22T18:15:49Z2009-04-22T18:15:49Z<p>I recommend the <a href="http://groups.google.com/group/iphonesdk?hl=en" rel="nofollow">iPhoneSDK group on Google</a>. It is frequented by experts.</p>
<p><a href="http://developer.apple.com/iphone/discussionForum.action" rel="nofollow">Apple's members-only forums</a> do have useful stuff especially if you want to find out about Beta products that developers are hesitant to discuss elsewhere.</p>
http://stackoverflow.com/questions/771499/iphone-cannot-run-code-on-device/773676#7736761Answer by Chris Lundie for iPhone - cannot run code on deviceChris Lundie2009-04-21T17:28:23Z2009-04-21T17:28:23Z<p>Check the Target properties, not just the Project, because it could be overridden there.</p>
http://stackoverflow.com/questions/768702/throwing-webview-request-to-another-webview/769149#7691490Answer by Chris Lundie for Throwing webview request to another webviewChris Lundie2009-04-20T16:52:32Z2009-04-20T16:52:32Z<p>What happens if you load a copy of the request instead of the original, and then return NO?</p>
<pre><code>- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
myapp *delegate = [[UIApplication sharedApplication] delegate];
Webview1Controller *webview1Controller = [[Webview1Controller alloc] initWithNibName:@"webview2" bundle:nil];
//self.view = webview2;'
[delegate.navigationController pushViewController: webview1Controller animated:YES];
[webview1Controller.webview2 loadRequest:[[request copy] autorelease]];
[webview1Controller release];
return NO;
}
</code></pre>
http://stackoverflow.com/questions/766627/uiwebview-stringbyevaluatingjavascriptfromstring-not-changing-text-box-value/767223#7672231Answer by Chris Lundie for UIWebView - stringByEvaluatingJavaScriptFromString - not changing text box valueChris Lundie2009-04-20T07:16:11Z2009-04-20T07:16:11Z<p>Does it work if you wait for the page to finish loading first?</p>
http://stackoverflow.com/questions/765737/iphone-camera-pics-come-up-rotated-cgaffinetransforminvert-singular-matrix/765828#7658281Answer by Chris Lundie for iPhone camera pics come up rotated -- CGAffineTransformInvert: singular matrix.Chris Lundie2009-04-19T18:17:01Z2009-04-19T18:17:01Z<p>The solution I've used is to rotate & flip the image as dictated by the <code>imageOrientation</code> property. There is some code here that will do the trick: <a href="http://blog.logichigh.com/2008/06/05/uiimage-fix/" rel="nofollow">UIImage fix</a>.</p>
<p>A UIImageView rotates & flips automatically, so it's not a problem if all you do is display it on screen like that.</p>
http://stackoverflow.com/questions/762489/allocating-a-nsuinteger-indexbuffer/764043#7640430Answer by Chris Lundie for Allocating a NSUInteger IndexBufferChris Lundie2009-04-18T19:43:35Z2009-04-18T19:43:35Z<p>I don't think you did anything wrong. <a href="http://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html" rel="nofollow">It's valid in C99.</a> You can double check by seeing if this evaluates as true:</p>
<pre><code>sizeof(theIndexBuffer) == arrayCount * sizeof(NSUInteger)
</code></pre>
http://stackoverflow.com/questions/760902/iphone-cocoa-nspredicate-regex-replace/761370#7613703Answer by Chris Lundie for iPhone/Cocoa: NSPredicate regex replace?Chris Lundie2009-04-17T17:23:30Z2009-04-17T17:23:30Z<p><a href="http://code.google.com/p/google-toolbox-for-mac/" rel="nofollow">Google Toolbox for Mac</a> has some useful regex functionality. It works on the iPhone. Take a look at <a href="http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/GTMRegex.h" rel="nofollow">GTMRegex.h</a>. There is a category on NSString with this method:</p>
<pre><code>- (NSString *)gtm_stringByReplacingMatchesOfPattern:(NSString *)pattern withReplacement:(NSString *)replacementPattern;
</code></pre>
http://stackoverflow.com/questions/757493/sqlite-blob-or-file-system-for-images/757685#7576851Answer by Chris Lundie for SQLITE Blob OR file system for imagesChris Lundie2009-04-16T19:27:12Z2009-04-16T19:27:12Z<p>I like to keep images in the file system because UIImage can cache image files & dump them from memory automatically when necessary. Just be careful not to change or delete an image file that is loaded into a UIImage or you will get crashing or other weird bugs.</p>
http://stackoverflow.com/questions/753233/change-uitabbaritem-tent-color-on-iphone/754126#7541261Answer by Chris Lundie for Change UITabBarItem Tent Color on iPhoneChris Lundie2009-04-15T23:17:06Z2009-04-15T23:17:06Z<p>There is no supported way to do that without custom drawing. Tab bar items don't even use the colors in your images, only the alpha channel. See also: <a href="http://stackoverflow.com/questions/571028/changing-tint-background-color-of-uitabbar">Changing Tint / Background color of UITabBar</a>.</p>
http://stackoverflow.com/questions/753444/iphone-friendly-websites-with-asp-net-mvc/754106#7541062Answer by Chris Lundie for iPhone friendly websites with ASP.NET MVCChris Lundie2009-04-15T23:07:13Z2009-04-15T23:07:13Z<p>The definitive resource is Apple's <a href="https://developer.apple.com/safari/mobile.php" rel="nofollow">Safari Dev Center</a>.</p>
http://stackoverflow.com/questions/752107/send-an-email-from-an-iphone-app-containing-an-img-tag/752516#7525161Answer by Chris Lundie for Send an email from an iPhone app containing an img tag.Chris Lundie2009-04-15T16:21:10Z2009-04-15T16:21:10Z<p>What happens when you call openURL?</p>
<p>You can try encoding the quotation mark (%22), less-than (%3C) and greater-than (%3E) characters.</p>
http://stackoverflow.com/questions/970137/beginner-iphone-question-drawing-a-rectangle-what-am-i-doing-wrong/970197#970197Comment by Chris Lundie on Beginner iphone question: drawing a rectangle. What am I doing wrong?Chris Lundie2009-06-10T16:20:28Z2009-06-10T16:20:28ZThe drawRect method is the only place where you are guaranteed to have a context that you can draw into. And only if you don't directly call drawRect yourself.http://stackoverflow.com/questions/922811/capturing-network-traffic-while-the-application-is-running-on-iphone-and-connecte/923341#923341Comment by Chris Lundie on Capturing network traffic while the application is running on iPhone and connected to xcodeChris Lundie2009-05-29T15:59:04Z2009-05-29T15:59:04ZGreat solution. I've heard of capturing cellular packets on jailbroken phones but I am no expert on that.http://stackoverflow.com/questions/907272/how-do-i-detect-a-touch-in-the-iphone-status-bar/907328#907328Comment by Chris Lundie on How do I detect a touch in the iPhone status bar?Chris Lundie2009-05-28T08:00:08Z2009-05-28T08:00:08ZGood point. In the original question it didn't look like you needed to do anything fancy.http://stackoverflow.com/questions/889595/architecturally-how-are-iphone-applications-installed-from-the-appstore/889617#889617Comment by Chris Lundie on Architecturally, how are iPhone applications installed from the AppStore?Chris Lundie2009-05-20T20:18:17Z2009-05-20T20:18:17ZIf you're curious to see the contents of an IPA file, it is really just a ZIP file.http://stackoverflow.com/questions/763735/is-uitextview-empty/763740#763740Comment by Chris Lundie on Is UITextView empty?Chris Lundie2009-04-18T18:38:06Z2009-04-18T18:38:06ZThis works even if [textField text] is nil, since in Objective-C you always get 0 returned from a nil object.http://stackoverflow.com/questions/752107/send-an-email-from-an-iphone-app-containing-an-img-tag/752516#752516Comment by Chris Lundie on Send an email from an iPhone app containing an img tag.Chris Lundie2009-04-15T23:18:34Z2009-04-15T23:18:34ZCan you show us a value of 'url1' that fails? Also check if [NSURL URLWithString:url1] is returning nil.http://stackoverflow.com/questions/744648/phonegap-question-local-file-storage-libraries-images-for-an-online-app/744831#744831Comment by Chris Lundie on phonegap question - local file storage (libraries, images) for an online app?Chris Lundie2009-04-14T00:35:55Z2009-04-14T00:35:55ZSorry, I don't know anything about PhoneGap specifically.http://stackoverflow.com/questions/742196/how-do-i-create-an-local-autorelease-pool-to-save-up-memory/742481#742481Comment by Chris Lundie on How do I create an local autorelease pool to save up memory?Chris Lundie2009-04-12T22:07:41Z2009-04-12T22:07:41ZGood description. Calling objectAtIndex: however does not add anything to the autorelease pool, so it's OK to use it in a loop without the autorelease pool.http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-cComment by Chris Lundie on How much of C++ is supported in Objective-C++Chris Lundie2009-04-12T05:56:13Z2009-04-12T05:56:13ZIt can make sense to use C++ when you need very high performance, like in a game engine.http://stackoverflow.com/questions/738213/iphone-sdk-nsstreameventhasbytesavailable-appendbytes-crashing/738224#738224Comment by Chris Lundie on iPhone SDK - NSStreamEventHasBytesAvailable / appendBytes: crashingChris Lundie2009-04-10T17:29:02Z2009-04-10T17:29:02ZLook into [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding] and release it when you are done.http://stackoverflow.com/questions/735663/using-celestial-framework-in-your-submitted-app/735993#735993Comment by Chris Lundie on Using Celestial framework in your submitted app ?Chris Lundie2009-04-09T22:39:52Z2009-04-09T22:39:52ZIt's in a folder called "PrivateFrameworks", do you need a bigger hint than that?http://stackoverflow.com/questions/730101/how-do-i-encode-in-a-url-in-an-html-attribute-value/730540#730540Comment by Chris Lundie on How do I encode "&" in a URL in an HTML attribute value?Chris Lundie2009-04-08T15:52:54Z2009-04-08T15:52:54ZThis was tagged as an iPhone question, and HTML mail works fine with iPhone Mail.http://stackoverflow.com/questions/703669/easiest-way-to-concatenate-strings-and-ints-for-iphone/703681#703681Comment by Chris Lundie on Easiest way to concatenate strings and ints for iPhone?Chris Lundie2009-04-01T02:08:38Z2009-04-01T02:08:38ZAlso look into localizedStringWithFormat: and initWithFormat:locale: when formatting a number for use on screen.http://stackoverflow.com/questions/667149/what-exactly-does-touch-view-return/667167#667167Comment by Chris Lundie on What exactly does [touch view] return?Chris Lundie2009-03-20T18:26:15Z2009-03-20T18:26:15ZUse the 'superview' and 'subviews' properties.http://stackoverflow.com/questions/636186/how-do-i-programatically-make-clicking-on-a-uiimageview-do-something-on-the-iphon/636204#636204Comment by Chris Lundie on How do I programatically make clicking on a UIImageView do something on the iPhone?Chris Lundie2009-03-11T21:52:58Z2009-03-11T21:52:58ZYou also have to set the userInteractionEnabled property to YES.