rpetrich

6,529
Reputation
694 views

Registered User

Name rpetrich
Member for 1 year
Seen 5 hours ago
Website
Location Edmonton, Alberta
Age 20
A software developer with C, C++, Delphi, Python, Perl, PHP, C#, Objective-C and unfortunately VB6.
1h
accepted Change UITabBarItem Tent Color on iPhone
18h
awarded  Mortarboard
Dec
2
comment Can I embed a custom font in an iPhone application?
Yup, the answer clearly states it's private.
Dec
2
comment Emailing full screen of iPhone app
It still works, but only on-device (not in simulator) and Apple will definitely reject it.
Nov
27
comment How do I index the applications installed on an iPhone?
No, there is no way to do this from inside of a standard App Store application
Nov
24
accepted presentModalViewController gives error?
Nov
20
accepted Avoid main thread freezes when UIWebView tries to blockingly lock the web thread
Nov
20
comment Howto articles for iPhone development, Objective C
The first link is down btw
Nov
12
answered can we open a ppt file in an iphone application?
Nov
12
comment iPhone device Generation
You could also use alloca
Nov
10
revised Programmatically attaching event handlers
added 1 characters in body
Nov
10
answered Programmatically attaching event handlers
Oct
26
comment Enabling Swipe-to-delete while showing reorder controls on UITableView
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.
Oct
22
comment iphone: creating image without allocating new memory
-[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
Oct
14
comment How Can I Prevent Memory Leaks in IE Mobile?
This is a good tip, but your example still concats a lot of strings.
Oct
13
answered NSAutoreleasePool problem
Oct
10
comment Jailbroken iPhone - root privilages
Upload 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 restore
Oct
6
comment Preventing a UITabBar from applying a gradient to its icon images
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];
Oct
6
comment presentModalViewController gives error?
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
Oct
6
answered presentModalViewController gives error?
Oct
4
answered Jailbroken iPhone - root privilages
Oct
4
answered sending pre populated sms from iPhone application
Oct
4
comment UIView Hell. Hiding one subview hides them all.
Are you sure the views that are hiding when they shouldn't aren't subviews instead of siblings?
Sep
29
answered How to programatically check whether a keyboard is present in iphone app?
Sep
29
revised How to programatically check whether a keyboard is present in iphone app?
Reformatted code
Sep
27
comment What are common UI misconceptions and annoyances?
Block Popup Windows?
Sep
27
answered Comparison with Corona, Phonegap, Titanium[iphone dev]
Sep
26
comment Tell if WebApp launched via URL or link on iPhone home screen
Yes, this is what I'm talking about too.
Sep
26
answered Tell if WebApp launched via URL or link on iPhone home screen
Sep
26
answered Safari plug in for iPhone
Sep
26
accepted How to make a blinking (or flashing) cursor on iphone?
Sep
26
comment How to make a blinking (or flashing) cursor on iphone?
Also, 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)
Sep
26
answered How to make a blinking (or flashing) cursor on iphone?
Sep
26
comment How to make a blinking (or flashing) cursor on iphone?
The context parameter is a void pointer, not a CGContextRef (although passing a CGContextRef is valid, it certainly won't be useful)
Sep
25
comment How can I animate a UIButton Alpha property with MonoTouch
Great answer; very easy to port to mono
Sep
25
answered How can I animate a UIButton Alpha property with MonoTouch
Sep
25
comment PDF ZOOMING is fading the text
enhance!
Sep
24
awarded  Tumbleweed
Sep
22
answered How to override tabbar’s more controller?
Sep
22
comment How do I prevent a one pixel border in variable height UITableViewCell from coming out as multiple pixels?
Also, 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 case
Sep
22
answered Symbolicating iPhone App Crash Reports
Sep
22
revised UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)
Updated solution to be quicker by calling properties much less often and branching less
Sep
22
comment UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)
That's odd. I do a lot of this sort of thing and usually the single parameter method calls the animated variant with animated:YES
Sep
22
revised UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)
deleted 8 characters in body
Sep
22
accepted UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)
Sep
22
comment iPhone - dealloc - Release vs. nil
Assigning nil before release means you are sending release to nil (thus not freeing the object). Assigning to nil is optional (as the object is being deallocated, the instance variable shouldn't ever be referenced again)
Sep
21
accepted iPhone font caching
Sep
19
comment Smoother UIView
Each of a view's dimensions should be at most 1024. If you go higher than that, weird things start to happen
Sep
19
comment How can I get the real time in iPhone, not the time set by user in Settings?
BCS: my thoughts exactly.
Sep
19
answered How can I detect whether the iphone has been rebooted since last time app started