User rpetrich - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:22:17Z http://stackoverflow.com/feeds/user/4007 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1712478/can-we-open-a-ppt-file-in-an-iphone-application/1720944#1720944 1 Answer by rpetrich for can we open a ppt file in an iphone application? rpetrich 2009-11-12T09:14:58Z 2009-11-12T09:14:58Z <p>Use <code>-[UIWebView loadData:MIMEType:textEncodingName:baseURL:]</code></p> <pre><code>[webView loadData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/vnd.ms-powerpoint" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:filePath]] </code></pre> http://stackoverflow.com/questions/1703353/programmatically-attaching-event-handlers/1706008#1706008 0 Answer by rpetrich for Programmatically attaching event handlers rpetrich 2009-11-10T06:34:22Z 2009-11-10T08:34:22Z <p>The proper code is as such:</p> <pre><code>- (void)loadView { [super loadView]; [seg addTarget:self action:@selector(sliderEventIB:forEvent:) forControlEvents:UIControlEventAllEvents]; } - (IBAction)sliderEventIB:(id)sender forEvent:(UIEvent*)event { NSLog(@"I feel you joanna"); } </code></pre> <p>Notice that the method has the same selector as is registered using <code>addTarget:action:forControlEvents</code>.</p> http://stackoverflow.com/questions/1436153/enabling-swipe-to-delete-while-showing-reorder-controls-on-uitableview 0 Enabling Swipe-to-delete while showing reorder controls on UITableView rpetrich 2009-09-17T00:23:16Z 2009-10-21T21:57:33Z <p>I am looking to allow reordering of <code>UITableViewCell</code>s and deleting via swipe to delete, but not via the red delete circle.</p> <pre><code>- (void)loadView { [super loadView]; [table setEditing:YES animated:NO]; } - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { // Perform delete here } } - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath { // Perform move here } - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { return UITableViewCellEditingStyleDelete; } - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath { return YES; } </code></pre> <p>Additionally, I've tried disabling the edit mode and calling <code>-[UITableViewCell setShowsReorderControl:YES]</code> with no luck.</p> <p><img src="http://booleanmagic.com/uploads/ReorderNotDelete.png" alt="Image" /></p> http://stackoverflow.com/questions/1558678/nsautoreleasepool-problem/1558892#1558892 1 Answer by rpetrich for NSAutoreleasePool problem rpetrich 2009-10-13T08:27:37Z 2009-10-13T08:27:37Z <p>That message occurs when an object is sent the <code>autorelease</code> message outside of an autorelease scope. Place a breakpoint on <code>_NSAutoreleaseNoPool</code> and check the stack to see where the pool needs to be added.</p> http://stackoverflow.com/questions/1524550/presentmodalviewcontroller-gives-error/1524564#1524564 2 Answer by rpetrich for presentModalViewController gives error? rpetrich 2009-10-06T09:35:25Z 2009-10-06T09:35:25Z <p>It appears that <code>mView</code> is a <code>UIViewController</code> and not a <code>UIView</code>.</p> <p>This is the proper way to apply a custom animation to a modal view controller:</p> <pre><code>[UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:2.0]; [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:[self view] cache:YES]; [self presentModalViewController:mView animated:NO]; [UIView commitAnimations]; </code></pre> http://stackoverflow.com/questions/1516403/jailbroken-iphone-root-privilages/1517270#1517270 0 Answer by rpetrich for Jailbroken iPhone - root privilages rpetrich 2009-10-04T20:13:45Z 2009-10-04T20:13:45Z <p>Even when jailbroken, applications installed via Xcode or the App Store are still sandboxed. To get read-only access to the entire filesystem, an application has to be installed in <code>/Applications/</code> instead of <code>/var/mobile/Applications/</code>. To get write access to the entire filesystem, the application would additionally have to be owned by <code>root</code> and be flagged with the <code>setuid</code> mode</p> http://stackoverflow.com/questions/1517169/sending-pre-populated-sms-from-iphone-application/1517258#1517258 1 Answer by rpetrich for sending pre populated sms from iPhone application rpetrich 2009-10-04T20:08:01Z 2009-10-04T20:08:01Z <p>This is not possible in the public SDK. The closest you can get is to launch the SMS application with a number pre-entered (via the <code>sms:</code> URL scheme)</p> http://stackoverflow.com/questions/1490573/how-to-programatically-check-whether-a-keyboard-is-present-in-iphone-app/1492436#1492436 1 Answer by rpetrich for How to programatically check whether a keyboard is present in iphone app? rpetrich 2009-09-29T13:12:14Z 2009-09-29T13:12:14Z <p>drawnonward's code is very close, but collides with UIKit's namespace and could be made easier to use.</p> <pre><code>@interface KeyboardStateListener { BOOL _isVisible; } + (KeyboardStateListener *)sharedInstance; @property (nonatomic, readonly, getter=isVisible) BOOL visible; @end static KeyboardStateListener *sharedInstance; @implementation KeyboardStateListener + (KeyboardStateListener *)sharedInstance { return sharedInstance; } + (void)load { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; sharedInstance = [[self alloc] init]; [pool release]; } - (BOOL)isVisible { return _isVisible; } - (void)didShow { _isVisible = YES; } - (void)didHide { _isVisible = NO; } - (id)init { if ((self = [super init])) { NSNotificationCenter *center = [NSNotificationCenter defaultCenter]; [center addObserver:self selector:@selector(didShow) name:UIKeyboardDidShowNotification object:nil]; [center addObserver:self selector:@selector(didHide) name:UIKeyboardWillHideNotification object:nil]; } return self; } @end </code></pre> http://stackoverflow.com/questions/1482586/comparison-with-corona-phonegap-titaniumiphone-dev/1482973#1482973 0 Answer by rpetrich for Comparison with Corona, Phonegap, Titanium[iphone dev] rpetrich 2009-09-27T07:05:59Z 2009-09-27T07:05:59Z <p>Of the solutions you mentioned, none of them appear to give you direct access to the MapKit framework introduced in OS 3.0.</p> <p>As the Google Maps HTML widgets aren't nearly as good as MapKit (see Google Latitude for an example), you are probably best off developing a native Cocoa touch application, or choosing a solution you can extend to add MapKit integration. PhoneGap is extensible in this manner (it's open-source so it is by default), and some of the other solutions might be as well.</p> http://stackoverflow.com/questions/1481442/tell-if-webapp-launched-via-url-or-link-on-iphone-home-screen/1481494#1481494 0 Answer by rpetrich for Tell if WebApp launched via URL or link on iPhone home screen rpetrich 2009-09-26T15:51:52Z 2009-09-26T15:51:52Z <p>In Safari, the <code>scrollY</code> will start at a negative value if inside Safari, and at 0 if running as an application.</p> <p>Likely the viewport will change as well (if it does, this is a more reliable method)</p> http://stackoverflow.com/questions/330700/safari-plug-in-for-iphone/1481485#1481485 0 Answer by rpetrich for Safari plug in for iPhone rpetrich 2009-09-26T15:49:31Z 2009-09-26T15:49:31Z <p>For devices that have Cydia, you can build a <a href="http://svn.saurik.com/repos/menes/trunk/mobilesubstrate/" rel="nofollow">MobileSubstrate</a> plugin. An example of such a plugin is DHowett's <a href="http://thebigboss.org/2009/08/02/safari-download-manager-100-is-out/" rel="nofollow">Safari Download Manager</a>.</p> http://stackoverflow.com/questions/1476260/how-to-make-a-blinking-or-flashing-cursor-on-iphone/1480076#1480076 1 Answer by rpetrich for How to make a blinking (or flashing) cursor on iphone? rpetrich 2009-09-26T00:27:50Z 2009-09-26T00:27:50Z <p>On the delegate:</p> <pre><code>- (void)blinkAnimation:(NSString *)animationId finished:(BOOL)finished target:(UIView *)target { if (shouldContinueBlinking) { [UIView beginAnimations:animationId context:target]; [UIView setAnimationDuration:0.5f]; [UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector:@selector(blinkAnimation:finished:target:)]; if ([target alpha] == 1.0f) [target setAlpha:0.0f]; else [target setAlpha:1.0f]; [UIView commitAnimations]; } } </code></pre> <p>And to start the animation:</p> <pre><code>shouldContinueBlinking = YES; [self blinkAnimation:@"blinkAnimation" finished:YES target:cursorView]; </code></pre> <p>Also, ensure your class has a shouldContinueBlinking instance variable</p> http://stackoverflow.com/questions/1470356/how-can-i-animate-a-uibutton-alpha-property-with-monotouch/1475384#1475384 2 Answer by rpetrich for How can I animate a UIButton Alpha property with MonoTouch rpetrich 2009-09-25T04:09:08Z 2009-09-25T04:09:08Z <p>This is pretty simple:</p> <pre><code>UIView button; public void fadeButtonInAndOut() { UIView.BeginAnimations("fadeOut"); UIView.SetAnimationDelegate(this); UIView.SetAnimationDidStopSelector(new Selector("fadeOutDidFinish")); UIView.SetAnimationDuration(0.5f); button.Alpha = 0.0f; UIView.CommitAnimations(); } [Export("fadeOutDidFinish")] public void FadeOutDidFinish() { UIView.BeginAnimations("fadeIn"); UIView.SetAnimationDuration(0.5f); button.Alpha = 1.0f; UIView.CommitAnimations(); } </code></pre> http://stackoverflow.com/questions/1458816/how-to-override-tabbars-more-controller/1462610#1462610 0 Answer by rpetrich for How to override tabbar's more controller? rpetrich 2009-09-22T21:08:27Z 2009-09-22T21:08:27Z <p>Since the more controller is a private class, there is no public SDK way to do this. The easiest way to solve this would be to re-implement the more controller manually (it's just a very simple <code>UITableViewController</code>)</p> http://stackoverflow.com/questions/1460892/symbolicating-iphone-app-crash-reports/1462531#1462531 0 Answer by rpetrich for Symbolicating iPhone App Crash Reports rpetrich 2009-09-22T20:51:11Z 2009-09-22T20:51:11Z <p>In order to symbolicate crashes, Spotlight must be able to find the .dSYM file that was generated at the same time the binary you submitted to Apple was. Since it contains the symbol information, you will be out of luck if it isn't available.</p> http://stackoverflow.com/questions/1446511/uiscrollview-bounces-no-seems-to-override-pagingenabled-yes/1448742#1448742 1 Answer by rpetrich for UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES) rpetrich 2009-09-19T15:14:02Z 2009-09-22T20:28:36Z <p>Your best bet would be to write an <code>UIScrollView</code> subclass and implement the desired behavior manually. You should be able to start with <code>pagingEnabled</code> and <code>bounces</code> both set to <code>YES</code> and then overwrite <code>-setContentOffset:</code> with your own method that clips the edges.</p> http://stackoverflow.com/questions/1443601/how-can-i-detect-whether-the-iphone-has-been-rebooted-since-last-time-app-started/1448796#1448796 2 Answer by rpetrich for How can I detect whether the iphone has been rebooted since last time app started rpetrich 2009-09-19T15:42:42Z 2009-09-19T15:42:42Z <p>Zoran's answer is the right way to go; it's the closest you are going to get without a network connection. <sub>(neither the cellular subsystem, nor the syslog are accessible for security reasons)</sub></p> <p>If you are looking to prevent malicious users from generating fake time data, have some central server (or trusted local server for enterprise deployments) track time-related events for you.</p> http://stackoverflow.com/questions/1444977/iphone-font-caching/1448761#1448761 0 Answer by rpetrich for iPhone font caching rpetrich 2009-09-19T15:23:47Z 2009-09-19T15:23:47Z <p>UIKit caches fonts at the metadata and glyph level to prevent parsing font data repeatedly. It should use an insignificant amount of memory relative to the rest of your application though (unless you attempt to draw every glyph from every font)</p> http://stackoverflow.com/questions/1447367/uiimagepickerview-controller-creating-memory-leaks-in-iphone-why/1448724#1448724 1 Answer by rpetrich for uiimagepickerview controller creating memory leaks in iphone - why? rpetrich 2009-09-19T15:07:53Z 2009-09-19T15:07:53Z <p><code>UIImagePickerController</code> loads and initializes <code>PhotoLibrary.framework</code> the first time it is shown. This memory won't be reclaimed until your application is closed.</p> <p><sub>(the code you posted doesn't appear to have leaks as-is, but that doesn't mean it won't interact with the rest of your application in a way that causes them)</sub></p> http://stackoverflow.com/questions/1442565/uiscrollview-subviews-do-not-maintain-correct-bounds-dimensions-under-zooming/1442586#1442586 0 Answer by rpetrich for UIScrollView subviews do NOT maintain correct bounds dimensions under zooming. rpetrich 2009-09-18T04:23:39Z 2009-09-18T04:23:39Z <p>I may be wrong, but those are just the logical dimensions; they would be scaled, rotated and deformed depending on the transform the <code>UIScrollView</code> has put on them. The display context should also be deformed similarly and thus it should be business as usual for the <code>drawRect:</code> method.</p> http://stackoverflow.com/questions/1433332/objective-c-is-an-autoreleased-initialisation-followed-by-a-retain-wrong-in-a-co/1433417#1433417 4 Answer by rpetrich for Objective-C: Is an autoreleased initialisation followed by a retain wrong in a constructor? rpetrich 2009-09-16T14:40:36Z 2009-09-16T14:40:36Z <p>This code is correct; you should not add a retain call.</p> <p><code>+[NSArray arrayWithContentsOfFile:]</code> will return an autoreleased <code>NSArray</code>. Passing that to <code>-[YourClass setMonate:]</code> will retain the object and assign to the backing ivar. After the constructor returns, the new <code>NSArray</code> will have a retain count of 2 and be added once to the current autorelease pool (resulting in a net retain count of 1)</p> <p>As long as you release the array in your dealloc, this code is correct.</p> http://stackoverflow.com/questions/1431566/iphone-cgbitmapcontextcreateimage-leak-anyone-else-with-this-problem/1432063#1432063 0 Answer by rpetrich for iPhone - CGBitmapContextCreateImage Leak, Anyone else with this problem? rpetrich 2009-09-16T09:59:35Z 2009-09-16T09:59:35Z <p>Why not use the simpler <code>UIGraphicsBeginImageContext</code>?</p> <pre><code>@implementation UIImage(ResizeExtension) - (UIImage *)resizedImageWithSize:(CGSize)newSize interpolationQuality:(CGInterpolationQuality)interpolationQuality; @end @implementation UIImage(ResizeExtension) - (UIImage *)resizedImageWithSize:(CGSize)newSize interpolationQuality:(CGInterpolationQuality)interpolationQuality { UIGraphicsBeginImageContext(newSize); CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetInterpolationQuality(context, interpolationQuality); [image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)]; UIImage *result = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return result; } </code></pre> <p>@end</p> <p><sub>Also, this will return an image retained by the current autorelease pool; if you are creating many of these images in a loop, allocate and drain an <code>NSAutoreleasePool</code> manually.</sub></p> http://stackoverflow.com/questions/1431594/avoid-main-thread-freezes-when-uiwebview-tries-to-blockingly-lock-the-web-thread/1432008#1432008 1 Answer by rpetrich for Avoid main thread freezes when UIWebView tries to blockingly lock the web thread rpetrich 2009-09-16T09:43:40Z 2009-09-16T09:43:40Z <p>The long and short of it is: avoid doing anything that blocks the web thread for a significant amount of time (<code>window.alert</code>, <code>window.prompt</code>, <code>XMLHttpRequest.open('GET', url, false)</code>, possibly others)</p> <p>Also, avoid calling methods that lock the web thread and then immediately doing something that takes a long time as the web thread is only unlocked once control is returned to the run loop. (Example: call <code>-[UITextView setText:]</code> then read a file synchronously on the main thread)</p> http://stackoverflow.com/questions/1419127/differences-between-foundation-frameworks-on-mac-os-x-and-iphone/1429715#1429715 0 Answer by rpetrich for Differences between Foundation frameworks on Mac OS X and iPhone rpetrich 2009-09-15T21:28:17Z 2009-09-15T21:28:17Z <p>Oddly enough, the iPhone version of Foundation does actually include the <code>NSHost</code> class, but Apple doesn't provide <a href="http://ericasadun.com/iPhoneDocs300/%5Fn%5Fs%5Fhost%5F8h-source.html" rel="nofollow">the headers for it</a>.</p> http://stackoverflow.com/questions/1426731/how-disable-copy-cut-select-select-all-in-uitextview/1429320#1429320 3 Answer by rpetrich for how disable copy ,cut,select ,select All in UITextView rpetrich 2009-09-15T19:58:16Z 2009-09-15T19:58:16Z <p>The easiest way is to create a subclass of <code>UITextView</code> that overrides the <code>canPerformAction:withSender:</code> method to return <code>NO</code> for actions that you don't want to allow:</p> <pre><code>- (BOOL)canPerformAction:(SEL)action withSender:(id)sender { if (action == @selector(paste:) return NO; return [super canPerformAction:action withSender:sender]; } </code></pre> <p><sub>Also see <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIResponder%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/UIResponder/canPerformAction%3AwithSender%3A" rel="nofollow">UIResponder</a></sub></p> http://stackoverflow.com/questions/93105/whats-the-best-way-to-determine-if-a-character-is-a-letter-in-vb6/109201#109201 3 Answer by rpetrich for What's the best way to determine if a character is a letter in VB6? rpetrich 2008-09-20T20:11:44Z 2009-09-15T19:36:23Z <p>Seanyboy's <code>IsCharAlphaA</code> <a href="http://stackoverflow.com/questions/93105/whats-the-best-way-to-determine-if-a-character-is-a-letter-in-vb6/93299#93299">answer</a> is close. The best method is to use the W version like so:</p> <pre><code>Private Declare Function IsCharAlphaW Lib "user32" (ByVal cChar As Integer) As Long Public Property Get IsLetter(character As String) As Boolean IsLetter = IsCharAlphaW(AscW(character)) End Property </code></pre> <p>Of course, this all rarely matters as all of VB6's controls are ANSI only</p> http://stackoverflow.com/questions/1417838/iphone-fonts-for-windows/1418835#1418835 0 Answer by rpetrich for iPhone fonts for Windows rpetrich 2009-09-13T21:06:38Z 2009-09-13T21:06:38Z <p>The iPhone system fonts are stored in <code>/System/Fonts/Cache/</code>. You use <code>NSData</code> to read them or copy them to another location using <code>NSFileManager</code>.</p> <p><sub>Keep in mind you may be breaking license agreements if you distribute them</sub></p> http://stackoverflow.com/questions/1418750/class-instance-release-order/1418781#1418781 3 Answer by rpetrich for Class Instance Release Order? rpetrich 2009-09-13T20:34:58Z 2009-09-13T20:34:58Z <p><code>-[NSObject release]</code> calls <code>-dealloc</code> if the retain count is zero. This allows the object to cleanup any objects it owns before calling <code>[super dealloc]</code> to do the actual deallocation. </p> <p>If implemented properly, an object will release any objects it owns before calling the super (this them to get deallocated if their retain count is also zero).</p> <p><sub>An object owns another if it calls <code>alloc</code>, <code>copy</code> or <code>retain</code> on it.</sub></p> http://stackoverflow.com/questions/1360552/automate-screenshots-on-iphone-simulator/1363550#1363550 1 Answer by rpetrich for Automate Screenshots on iPhone Simulator? rpetrich 2009-09-01T16:56:30Z 2009-09-11T06:45:14Z <p>The private <code>UIGetScreenImage(void)</code> API can be used to capture the contents of the screen:</p> <pre><code>CGImageRef UIGetScreenImage(); void SaveScreenImage(NSString *path) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; CGImageRef cgImage = UIGetScreenImage(); void *imageBytes = NULL; if (cgImage == NULL) { CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB(); imageBytes = malloc(320 * 480 * 4); CGContextRef context = CGBitmapContextCreate(imageBytes, 320, 480, 8, 320 * 4, colorspace, kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Big); CGColorSpaceRelease(colorspace); for (UIWindow *window in [[UIApplication sharedApplication] windows]) { CGRect bounds = [window bounds]; CALayer *layer = [window layer]; CGContextSaveGState(context); if ([layer contentsAreFlipped]) { CGContextTranslateCTM(context, 0.0f, bounds.size.height); CGContextScaleCTM(context, 1.0f, -1.0f); } [layer renderInContext:(CGContextRef)context]; CGContextRestoreGState(context); } cgImage = CGBitmapContextCreateImage(context); CGContextRelease(context); } NSData *pngData = UIImagePNGRepresentation([UIImage imageWithCGImage:cgImage]); CGImageRelease(cgImage); if (imageBytes) free(imageBytes); [pngData writeToFile:path atomically:YES]; [pool release]; } </code></pre> <p>Be sure to wrap it inside an <code>#ifdef</code> so it doesn't appear in the release build.</p> http://stackoverflow.com/questions/1404319/iphone-sdkhtml-parsing-standard-way-or-example/1404346#1404346 0 Answer by rpetrich for iPhone SDK:HTML parsing standard way or example: rpetrich 2009-09-10T09:49:26Z 2009-09-10T09:49:26Z <p><code>libxml2.2</code> comes in the SDK, and <code>libxml/HTMLparser.h</code> claims the following:</p> <pre><code>This module implements an HTML 4.0 non-verifying parser with API compatible with the XML parser ones. It should be able to parse "real world" HTML, even if severely broken from a specification point of view. </code></pre> <p>It shouldn't be too difficult to use that, but if all else fails you could always load up a <code>UIWebView</code> in the background and have it load the content for you.</p> http://stackoverflow.com/questions/1355480/preventing-a-uitabbar-from-applying-a-gradient-to-its-icon-images/1356560#1356560 Comment by rpetrich on Preventing a UITabBar from applying a gradient to its icon images rpetrich 2009-12-09T04:24:03Z 2009-12-09T04:24:03Z I haven't used it in an app store app (I'm a jailbreak developer) http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/809568#809568 Comment by rpetrich on Can I embed a custom font in an iPhone application? rpetrich 2009-12-02T02:05:43Z 2009-12-02T02:05:43Z Yup, the answer clearly states it's private. http://stackoverflow.com/questions/692464/emailing-full-screen-of-iphone-app/694841#694841 Comment by rpetrich on Emailing full screen of iPhone app rpetrich 2009-12-02T01:58:50Z 2009-12-02T01:58:50Z It still works, but only on-device (not in simulator) and Apple will definitely reject it. http://stackoverflow.com/questions/1807537/how-do-i-index-the-applications-installed-on-an-iphone/1807543#1807543 Comment by rpetrich on How do I index the applications installed on an iPhone? rpetrich 2009-11-27T14:03:33Z 2009-11-27T14:03:33Z No, there is no way to do this from inside of a standard App Store application http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c/69951#69951 Comment by rpetrich on Howto articles for iPhone development, Objective C rpetrich 2009-11-20T09:14:23Z 2009-11-20T09:14:23Z The first link is down btw http://stackoverflow.com/questions/1713480/iphone-device-generation Comment by rpetrich on iPhone device Generation rpetrich 2009-11-12T09:09:13Z 2009-11-12T09:09:13Z You could also use alloca http://stackoverflow.com/questions/1436153/enabling-swipe-to-delete-while-showing-reorder-controls-on-uitableview/1603898#1603898 Comment by rpetrich on Enabling Swipe-to-delete while showing reorder controls on UITableView rpetrich 2009-10-26T15:43:13Z 2009-10-26T15:43:13Z Unfortunately, there appears to be no way to show the delete confirmation programatically (showingDeleteConfirmation is readonly). For now I'm leaving the the reorder control visible, but will probably end up intercepting the touches and showing a custom delete button manually. http://stackoverflow.com/questions/1080075/iphone-creating-image-without-allocating-new-memory/1080101#1080101 Comment by rpetrich on iphone: creating image without allocating new memory rpetrich 2009-10-22T23:59:56Z 2009-10-22T23:59:56Z -[UIImage initWithData] decodes the image data and in the process makes a copy of it. To truly create an image without allocating memory, the only way is to have the data predecoded in a pixel format the iPhone supports copy-on-write with and use CGBitmapContextCreate http://stackoverflow.com/questions/1454380/how-can-i-prevent-memory-leaks-in-ie-mobile/1569423#1569423 Comment by rpetrich on How Can I Prevent Memory Leaks in IE Mobile? rpetrich 2009-10-14T22:51:19Z 2009-10-14T22:51:19Z This is a good tip, but your example still concats a lot of strings. http://stackoverflow.com/questions/1516403/jailbroken-iphone-root-privilages/1517270#1517270 Comment by rpetrich on Jailbroken iPhone - root privilages rpetrich 2009-10-10T07:12:24Z 2009-10-10T07:12:24Z Upload your application to /Applications/ and then &quot;chmod 6777 /Applications/YourApp.app/YourApp&quot; and &quot;chown root:admin /Applications/YourApp.app/YourApp&quot; from SSH. Note: very few applications require root; bugs in your application could cause the device to be unbootable without a restore http://stackoverflow.com/questions/1355480/preventing-a-uitabbar-from-applying-a-gradient-to-its-icon-images/1356560#1356560 Comment by rpetrich on Preventing a UITabBar from applying a gradient to its icon images rpetrich 2009-10-06T21:31:45Z 2009-10-06T21:31:45Z mofie: Add the code above to your appdelegate, then add this call to applicationDidFinishLaunching: [[tabBarController tabBar] recolorItemsWithColor:[UIColor whiteColor] shadowColor:[UIColor blackColor] shadowOffset:CGSizeMake(0.0f, -1.0f) shadowBlur:3.0f]; http://stackoverflow.com/questions/1524550/presentmodalviewcontroller-gives-error/1524564#1524564 Comment by rpetrich on presentModalViewController gives error? rpetrich 2009-10-06T21:26:28Z 2009-10-06T21:26:28Z have you tried forView:[[self view] superview] instead? Also, I don't have your code, so there's no way I'd be able to test it http://stackoverflow.com/questions/1517233/uiview-hell-hiding-one-subview-hides-them-all Comment by rpetrich on UIView Hell. Hiding one subview hides them all. rpetrich 2009-10-04T20:05:55Z 2009-10-04T20:05:55Z Are you sure the views that are hiding when they shouldn't aren't subviews instead of siblings? http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1023412#1023412 Comment by rpetrich on What are common UI misconceptions and annoyances? rpetrich 2009-09-27T15:05:05Z 2009-09-27T15:05:05Z Block Popup Windows? http://stackoverflow.com/questions/1481442/tell-if-webapp-launched-via-url-or-link-on-iphone-home-screen/1481494#1481494 Comment by rpetrich on Tell if WebApp launched via URL or link on iPhone home screen rpetrich 2009-09-26T16:43:45Z 2009-09-26T16:43:45Z Yes, this is what I'm talking about too.