User rpetrich - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T10:45:18Zhttp://stackoverflow.com/feeds/user/4007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1436153/enabling-swipe-to-delete-while-showing-reorder-controls-on-uitableview0Enabling Swipe-to-delete while showing reorder controls on UITableViewrpetrich2009-09-17T00:23:16Z2009-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#15588921Answer by rpetrich for NSAutoreleasePool problemrpetrich2009-10-13T08:27:37Z2009-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#15245641Answer by rpetrich for presentModalViewController gives error?rpetrich2009-10-06T09:35:25Z2009-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#15172700Answer by rpetrich for Jailbroken iPhone - root privilagesrpetrich2009-10-04T20:13:45Z2009-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#15172580Answer by rpetrich for sending pre populated sms from iPhone applicationrpetrich2009-10-04T20:08:01Z2009-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#14924361Answer by rpetrich for How to programatically check whether a keyboard is present in iphone app?rpetrich2009-09-29T13:12:14Z2009-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#14829730Answer by rpetrich for Comparison with Corona, Phonegap, Titanium[iphone dev]rpetrich2009-09-27T07:05:59Z2009-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#14814940Answer by rpetrich for Tell if WebApp launched via URL or link on iPhone home screenrpetrich2009-09-26T15:51:52Z2009-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#14814850Answer by rpetrich for Safari plug in for iPhonerpetrich2009-09-26T15:49:31Z2009-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#14800761Answer by rpetrich for How to make a blinking (or flashing) cursor on iphone?rpetrich2009-09-26T00:27:50Z2009-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#14753842Answer by rpetrich for How can I animate a UIButton Alpha property with MonoTouchrpetrich2009-09-25T04:09:08Z2009-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#14626100Answer by rpetrich for How to override tabbar's more controller?rpetrich2009-09-22T21:08:27Z2009-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-1Answer by rpetrich for Symbolicating iPhone App Crash Reportsrpetrich2009-09-22T20:51:11Z2009-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#14487421Answer by rpetrich for UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)rpetrich2009-09-19T15:14:02Z2009-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#14487961Answer by rpetrich for How can I detect whether the iphone has been rebooted since last time app startedrpetrich2009-09-19T15:42:42Z2009-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#14487610Answer by rpetrich for iPhone font cachingrpetrich2009-09-19T15:23:47Z2009-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#14487241Answer by rpetrich for uiimagepickerview controller creating memory leaks in iphone - why?rpetrich2009-09-19T15:07:53Z2009-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#14425860Answer by rpetrich for UIScrollView subviews do NOT maintain correct bounds dimensions under zooming.rpetrich2009-09-18T04:23:39Z2009-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#14334174Answer by rpetrich for Objective-C: Is an autoreleased initialisation followed by a retain wrong in a constructor? rpetrich2009-09-16T14:40:36Z2009-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#14320630Answer by rpetrich for iPhone - CGBitmapContextCreateImage Leak, Anyone else with this problem?rpetrich2009-09-16T09:59:35Z2009-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#14320081Answer by rpetrich for Avoid main thread freezes when UIWebView tries to blockingly lock the web threadrpetrich2009-09-16T09:43:40Z2009-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#14297150Answer by rpetrich for Differences between Foundation frameworks on Mac OS X and iPhonerpetrich2009-09-15T21:28:17Z2009-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#14293203Answer by rpetrich for how disable copy ,cut,select ,select All in UITextViewrpetrich2009-09-15T19:58:16Z2009-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#1092013Answer by rpetrich for What's the best way to determine if a character is a letter in VB6?rpetrich2008-09-20T20:11:44Z2009-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#14188350Answer by rpetrich for iPhone fonts for Windowsrpetrich2009-09-13T21:06:38Z2009-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#14187813Answer by rpetrich for Class Instance Release Order?rpetrich2009-09-13T20:34:58Z2009-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#13635501Answer by rpetrich for Automate Screenshots on iPhone Simulator?rpetrich2009-09-01T16:56:30Z2009-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#14043460Answer by rpetrich for iPhone SDK:HTML parsing standard way or example:rpetrich2009-09-10T09:49:26Z2009-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/1402028/how-to-load-an-image-stored-in-a-static-library/1403136#14031362Answer by rpetrich for How to load an image stored in a static libraryrpetrich2009-09-10T02:46:26Z2009-09-10T02:46:26Z<p>The simplest way is to store the image in an inline character array:</p>
<pre><code>const char imageData[] = { 0x00, 0x01, 0xFF, ... };
</code></pre>
<p>And later when you need it:</p>
<pre><code>UIImage *image = [UIImage imageWithData:[NSData dataWithBytesNoCopy:imageData length:sizeof(imageData) freeWhenDone:NO]];
</code></pre>
<p>You will have to convert your image's binary data (after saved as either PNG or JPEG) to the character array manually (or write a script to do so)</p>
http://stackoverflow.com/questions/1398017/iphone-caller-id-retrieval-toolchain/1401571#14015710Answer by rpetrich for iPhone Caller ID Retrieval - TOOLCHAINrpetrich2009-09-09T19:26:21Z2009-09-09T19:26:21Z<p>Given a <code>CTCallRef</code> you should be able to call <code>CTCallCopyAddress</code> and <code>CTCallCopyName</code> to get the call details.</p>
<p>Alternatively you may wish to look at <a href="http://blogs.oreilly.com/digitalmedia/2008/02/when-it-comes-to-the.html" rel="nofollow">observing telephony events manually</a>.</p>
http://stackoverflow.com/questions/1436153/enabling-swipe-to-delete-while-showing-reorder-controls-on-uitableview/1603898#1603898Comment by rpetrich on Enabling Swipe-to-delete while showing reorder controls on UITableViewrpetrich2009-10-26T15:43:13Z2009-10-26T15:43:13ZUnfortunately, 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#1080101Comment by rpetrich on iphone: creating image without allocating new memoryrpetrich2009-10-22T23:59:56Z2009-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 CGBitmapContextCreatehttp://stackoverflow.com/questions/1454380/how-can-i-prevent-memory-leaks-in-ie-mobile/1569423#1569423Comment by rpetrich on How Can I Prevent Memory Leaks in IE Mobile?rpetrich2009-10-14T22:51:19Z2009-10-14T22:51:19ZThis is a good tip, but your example still concats a lot of strings. http://stackoverflow.com/questions/1516403/jailbroken-iphone-root-privilages/1517270#1517270Comment by rpetrich on Jailbroken iPhone - root privilagesrpetrich2009-10-10T07:12:24Z2009-10-10T07:12:24ZUpload your application to /Applications/ and then "chmod 6777 /Applications/YourApp.app/YourApp" and "chown root:admin /Applications/YourApp.app/YourApp" from SSH. Note: very few applications require root; bugs in your application could cause the device to be unbootable without a restorehttp://stackoverflow.com/questions/1355480/preventing-a-uitabbar-from-applying-a-gradient-to-its-icon-images/1356560#1356560Comment by rpetrich on Preventing a UITabBar from applying a gradient to its icon imagesrpetrich2009-10-06T21:31:45Z2009-10-06T21:31:45Zmofie: 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#1524564Comment by rpetrich on presentModalViewController gives error?rpetrich2009-10-06T21:26:28Z2009-10-06T21:26:28Zhave 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 ithttp://stackoverflow.com/questions/1517233/uiview-hell-hiding-one-subview-hides-them-allComment by rpetrich on UIView Hell. Hiding one subview hides them all.rpetrich2009-10-04T20:05:55Z2009-10-04T20:05:55ZAre 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#1023412Comment by rpetrich on What are common UI misconceptions and annoyances?rpetrich2009-09-27T15:05:05Z2009-09-27T15:05:05ZBlock Popup Windows?http://stackoverflow.com/questions/1481442/tell-if-webapp-launched-via-url-or-link-on-iphone-home-screen/1481494#1481494Comment by rpetrich on Tell if WebApp launched via URL or link on iPhone home screenrpetrich2009-09-26T16:43:45Z2009-09-26T16:43:45ZYes, this is what I'm talking about too.http://stackoverflow.com/questions/1476260/how-to-make-a-blinking-or-flashing-cursor-on-iphone/1480076#1480076Comment by rpetrich on How to make a blinking (or flashing) cursor on iphone?rpetrich2009-09-26T00:30:19Z2009-09-26T00:30:19ZAlso, setting the alpha instead of the textColor will allow the GPU to do all of the drawing and will improve performance. Similarly, making cursorView a UIView and setting the backgroundColor will use less RAM and CPU than a UILabel (and much less than a UITextView or UITextField)http://stackoverflow.com/questions/1476260/how-to-make-a-blinking-or-flashing-cursor-on-iphoneComment by rpetrich on How to make a blinking (or flashing) cursor on iphone?rpetrich2009-09-26T00:11:24Z2009-09-26T00:11:24ZThe context parameter is a void pointer, not a CGContextRef (although passing a CGContextRef is valid, it certainly won't be useful)http://stackoverflow.com/questions/1470356/how-can-i-animate-a-uibutton-alpha-property-with-monotouch/1470782#1470782Comment by rpetrich on How can I animate a UIButton Alpha property with MonoTouchrpetrich2009-09-25T04:09:38Z2009-09-25T04:09:38ZGreat answer; very easy to port to monohttp://stackoverflow.com/questions/1470983/pdf-zooming-is-fading-the-textComment by rpetrich on PDF ZOOMING is fading the textrpetrich2009-09-25T03:40:24Z2009-09-25T03:40:24Zenhance! http://stackoverflow.com/questions/1460510/how-do-i-prevent-a-one-pixel-border-in-variable-height-uitableviewcell-from-comin/1461326#1461326Comment by rpetrich on How do I prevent a one pixel border in variable height UITableViewCell from coming out as multiple pixels?rpetrich2009-09-22T20:58:10Z2009-09-22T20:58:10ZAlso, the rect parameter to drawRect: method is NOT the entire rect of the view, it is the rect of the area that is invalid and needs repainting (see setNeedsDisplayInRect:). In most cases, it will be equivalent to [self bounds], but if setNeedsDisplayInRect: is ever called, that might not be the casehttp://stackoverflow.com/questions/1446511/uiscrollview-bounces-no-seems-to-override-pagingenabled-yes/1448742#1448742Comment by rpetrich on UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)rpetrich2009-09-22T20:30:00Z2009-09-22T20:30:00ZThat's odd. I do a lot of this sort of thing and usually the single parameter method calls the animated variant with animated:YES