692 reputation
57
bio website cerebralgardens.com
location Bradford, Canada
age 39
visits member for 3 years, 10 months
seen 7 hours ago
stats profile views 41

May
17
comment should I store an encription key as hardcoded in my iOS or Android App
Why the downvote? It's been over a year since this question was asked, and there hasn't been a better solution yet? In some cases, you need to have a common key stored in the app, this method works and is more secure than most other methods. If you're going to downvote, at least offer up a better solution...
Mar
27
awarded  Enthusiast
Mar
22
comment Navigation Controller Transparent Bar Style is not working
navigationBar.translucent = YES; is the key, thanks.
Mar
15
answered Know whether user downloaded iOS app for free or paid?
Mar
4
awarded  Caucus
Mar
2
awarded  Citizen Patrol
Feb
4
comment UIButton: set image for selected-highlighted state
Since you can't set this in IB, you can put this in your viewDidLoad method, and it'll be almost as good, since you can then change the image in IB and not have to worry about always updating the code to match. [button setImage:[button imageForState:UIControlStateHighlighted] forState:UIControlStateSelected | UIControlStateHighlighted];
Jan
29
answered Push Notification Error
Jan
23
awarded  Yearling
Jan
23
answered How to use Kaleidoscope 2 with Git Tower?
Dec
31
comment How to use presentModalViewController to create a transparent view
I've since updated this category. You can get the code here: gist.github.com/4423365. I use it over table views and collection views without the scrolling problem you describe.
Nov
19
awarded  Nice Answer
Oct
9
awarded  Commentator
Oct
9
comment Keep uitableview static when inserting rows at the top
This worked great, thanks. Note: I changed delayOffset.y += self.tableView.rowHeight; To: delayOffset.y += [self tableView:self.tableView heightForRowAtIndexPath:newIndexPath]; to handle variable cell heights
Sep
21
awarded  Yearling
Sep
3
answered Cannot create an NSPersistentStoreCoordinator with a nil model
Jul
27
comment Install Simulator SDK 4.3 to Xcode 4.4 on Mountain Lion
you can prevent the file from being replaced when Xcode starts by doing 'chgflags -vv uchg *.dvtdownloadableindex' (make the file editable again by changing uchg to nouchg, the -vv just sets verbose on so you can see the change). However, Xcode seems still seems to ignore the 4.3 simulator...
Jul
17
comment in-app purchase verify receipt error
Make sure you send a cryptographically signed Yes or No back to your app too, or the hacker can just redirect the device away from your server too.
Jul
17
comment in-app purchase verify receipt error
For exactly this reason: tuaw.com/2012/07/13/… In this case, the hacker has redirected the requests from Apple's servers to their own from the device. So they can provide fake receipts as well. But if you verify the receipt on your own server, the hacker can't redirect or alter your server's config, so you know you're (most likely) really getting Apple's servers and can trust the receipt validation.
May
17
comment How can I sign tweets containing my custom “via” with the iOS 5 Twitter framework?
I agree, it feels completely broken. I just released an iPad app today (check it out bit.ly/PartyDoodles ) and it's using the iOS5 Twitter integration. Now it's published, and it still reports all tweets as coming from iOS. I'm going to use a support request to try and get more info on how we can fix it and support iOS 4 still. If I get any answers I'll post the info.