Ben Gottlieb

10,576
Reputation
846 views

Registered User

Name Ben Gottlieb
Member for 1 year
Seen 27 mins ago
Website
Location US
Age 36
Newton, Palm, Mac, now iPhone. Love this industry!
4h
comment Determine the app IDs of applications on iPhone
actually, in 3.0, UApplication has a -canOpenURL: method that will tell you if that URL scheme is supported.
8h
accepted Send programatic email through Objective-C
8h
answered Send programatic email through Objective-C
21h
accepted How can I send two arguments in a selector method?
22h
answered How can I send two arguments in a selector method?
22h
revised how to send direct messages uisng oauth?
added php tag
22h
answered Determine the app IDs of applications on iPhone
23h
comment Best Practices for implementing a modal Alert View using Cocoa Touch?
show adds the alert view to the view hierarchy, which retains it. If you don't -release or -autorelease it, you'll have a leak.
1d
awarded  Mortarboard
1d
answered How do you hide the reorder control in a UITableViewCell without using reload?
1d
revised iphone Development - pick unique image from array problem, syntax help.
code formatting
1d
comment UINavigationBar gradient details
This is much better than a single gradient (what I was using before), but, even after adjusting colors, it still doesn't look right.
2d
asked UINavigationBar gradient details
Dec
3
answered iPhone - Volume/Mute Buttons
Dec
3
answered Tableview and uinavgation controller problem
Dec
3
answered IPHONE: How do you put 25000 non-consumable items up for in-app purchase
Dec
2
comment Is there a way to get to know if the user is on call while using my app?
I'd hope so too, plus I'm still holding out hope for AT&T tethering!
Dec
1
comment NSTableView responding to first click in a panel
Did you have to set anything else in either the XIB file, or in code? I'm trying to get this to work with an NSCollectionView, and am so far failing entirely.
Nov
30
accepted Removing multiple ViewControllers iPhone tabbar app
Nov
29
accepted IPHONE: listing all views and subviews created by my app
Nov
29
answered UIPageControl Help
Nov
29
answered IPHONE: listing all views and subviews created by my app
Nov
29
answered How to raise a double value by power of 12?
Nov
29
accepted On iPhone OS, how can I programmatically check if a contact exists in the address book?
Nov
29
answered Registering an event/notification for location and speed in iPhone
Nov
29
answered On iPhone OS, how can I programmatically check if a contact exists in the address book?
Nov
28
comment iPhone table view - problem with indexPath.row
It's unclear what cell0 is. Is it an instance variable? If it's a property (which it seems to be), how is it declared? retain or assign? Without seeing the rest of your code, I can't be sure, but I think there's something amiss with the way you're re-using your cells.
Nov
28
answered Predicting performance for an iPhone/iPod Touch App
Nov
27
answered How do you change a drag-and-dropped image mid-drag?
Nov
27
revised error appears in jdeveloper 11g 11112
removed Mac tag
Nov
27
answered UILabel only displaying odd objects in NSArray
Nov
27
revised UILabel only displaying odd objects in NSArray
cleaned up code formatting
Nov
27
comment Twitter+OAuth Crash on iPhone OS 2.x
I've updated the GitHub code to provide this.
Nov
27
answered Twitter+OAuth Crash on iPhone OS 2.x
Nov
26
answered iPhone table view - problem with indexPath.row
Nov
26
answered Why won’t MFMailComposeViewController send messages?
Nov
26
comment How to get the center of the thumb image of UISlider
Upon further testing, it appears there's a 1-4px adjustment, depending on where on the slider you are. I've posted my test code here: dl.dropbox.com/u/85235/ThumbTest.zip. Using it and xScope, you can play around and find the exact values.
Nov
25
comment How to get the center of the thumb image of UISlider
Oops, sorry about the typo, fixed.
Nov
25
revised How to get the center of the thumb image of UISlider
Fixed typo in frame accessing
Nov
24
answered Removing multiple ViewControllers iPhone tabbar app
Nov
24
answered iPhone app launch time, lifecycle question
Nov
24
answered iPhone view is 3/4 grey, could be rotated incorrectly
Nov
24
answered Is there a way to get to know if the user is on call while using my app?
Nov
24
answered how do i add a navigationViewController to a UIViewController?
Nov
23
comment How to use Objective-c NSTimeZone to convert system timezone to destination’s local timezone?
There are a number of initializers for NSTimeZone; probably use either +timeZoneForSecondsFromGMT: or + timeZoneWithName:. You mentioned that you already had information about the timezone.
Nov
22
answered problem loading url in view
Nov
22
revised problem loading url in view
cleaned up code formatting
Nov
22
comment iphone sdk: Movie Player in UIWebView
That's a starting point.
Nov
22
answered iphone sdk: Movie Player in UIWebView
Nov
21
comment Cannot get Twitter-OAuth-iPhone to work
The SA_OAuthTwitterController should be able to be used in Modal form; to get rid of your duplicate nav bars, just send one of your nav controllers a -setNavigationBarHidden: message.