User Ben Gottlieb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T12:56:20Zhttp://stackoverflow.com/feeds/user/6694http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914060/json-and-objective-c/1914131#19141310Answer by Ben Gottlieb for JSon and objective-cBen Gottlieb2009-12-16T11:36:58Z2009-12-16T11:36:58Z<p>There's also <a href="http://code.google.com/p/json-framework/" rel="nofollow">json-framework</a>, on Google Code.</p>
http://stackoverflow.com/questions/1909887/list-with-400-items-images/1909929#19099291Answer by Ben Gottlieb for List with 400 items + imagesBen Gottlieb2009-12-15T19:51:50Z2009-12-15T19:51:50Z<p>Definitely UITableView, and SQLite would work, but CoreData would be better.</p>
http://stackoverflow.com/questions/1907483/multiple-tab-bar-controller/1907505#19075052Answer by Ben Gottlieb for multiple tab bar controller ?Ben Gottlieb2009-12-15T13:34:58Z2009-12-15T13:34:58Z<p>you can do this by adding a UITabBar inside of a standard view controller, and then using that view controller as one of the members of a UITabBarController's viewControllers array. But PLEASE DON'T. This is horrible UI.</p>
http://stackoverflow.com/questions/1903422/custon-uislider-with-non-rectangular-area/1903447#19034473Answer by Ben Gottlieb for Custon UISlider with non rectangular areaBen Gottlieb2009-12-14T20:58:15Z2009-12-14T20:58:15Z<p>You might try setting invisible images for both minimumTrackImage and maximumTrackImage to transparent, and then sticking a UIImageView behind it.</p>
http://stackoverflow.com/questions/1903186/uipagecontrol-tap-to-swipe/1903429#19034290Answer by Ben Gottlieb for UIPageControl tap to "swipe" ?Ben Gottlieb2009-12-14T20:56:13Z2009-12-14T20:56:13Z<p>Just make sure you're giving your page control enough width, and you've hooked up its Value Changed outlet. If you do this, you should get messages when its value changes; look at the currentPage property on the control. It handles left- and right-margin taps properly.</p>
http://stackoverflow.com/questions/1898626/is-there-a-way-to-cancel-an-animated-uitableview-uiscrollview-setcontentoffsetan/1898676#18986760Answer by Ben Gottlieb for Is there a way to cancel an animated UITableView/UIScrollView setContentOffset:animated: ?Ben Gottlieb2009-12-14T02:40:38Z2009-12-14T02:40:38Z<p>This looks like it might be a delegate issue. Do you have a delegate for the table, and, if so, is it dealloc'd when the table is? Try nil'ing out your tableView's delegate before releasing it. </p>
<p>[The tableView is retained by CoreAnimation while it's animating, so that's probably not the problem.]</p>
http://stackoverflow.com/questions/1895328/even-empty-iphone-app-doesnt-work-on-phone/1895362#18953621Answer by Ben Gottlieb for Even empty Iphone App doesn't work on PhoneBen Gottlieb2009-12-13T02:16:37Z2009-12-13T02:16:37Z<p>Check your mobileprovision files, and make sure they're up to date. Does the console print anything when it crashes in the debugger? Also, make sure your XIB files are correctly named, and, on the device, case IS important.</p>
http://stackoverflow.com/questions/1885602/does-updated-provisioning-file-require-new-build/1885642#18856422Answer by Ben Gottlieb for Does updated provisioning file require new build?Ben Gottlieb2009-12-11T03:36:30Z2009-12-11T03:36:30Z<p>No, you'll need to rebuild with the new provisioning file.</p>
http://stackoverflow.com/questions/1885318/uiscrollview-offsetting-content-double-the-requested-amount/1885334#18853340Answer by Ben Gottlieb for UIScrollView offsetting content double the requested amountBen Gottlieb2009-12-11T01:45:06Z2009-12-11T01:45:06Z<p>Are you possibly setting the scrollView.contentOffset somewhere, independent of this? Also, and this may just be a copy/paste issue, you reference both snapshotInset and _snapshotInset.</p>
http://stackoverflow.com/questions/1878595/how-to-make-a-circular-uiview/1878616#18786162Answer by Ben Gottlieb for How to make a circular UIViewBen Gottlieb2009-12-10T04:21:47Z2009-12-10T04:21:47Z<p>You need to make a transparent UIView (background color alpha of 0), and then, in its drawRect:, draw your circle using CoreGraphics calls. You could also edit the view's layer, and give it a cornerRadius.</p>
http://stackoverflow.com/questions/1878281/disable-a-webkit-webview/1878345#18783450Answer by Ben Gottlieb for Disable a WebKit WebViewBen Gottlieb2009-12-10T02:45:17Z2009-12-10T02:45:17Z<p>You could probably do this via javascript (iterate through all links, forms, etc) on the page and deactivate them, using -[UIWebView stringByEvaluatingJavaScriptFromString:].</p>
http://stackoverflow.com/questions/1878327/iphone-ad-hoc-distribution-without-expiration/1878340#18783405Answer by Ben Gottlieb for iPhone Ad Hoc distribution without expirationBen Gottlieb2009-12-10T02:43:09Z2009-12-10T02:43:09Z<p>Apple has an an <a href="http://developer.apple.com/iphone/program/distribute.html" rel="nofollow">enterprise distribution</a> program, which might allow what you're trying to do. There's also jailbreaking the iPods. That would let you run unsigned code, so you could build your apps without ad-hoc certs. </p>
http://stackoverflow.com/questions/1873335/question-concerning-dealloc-and-applicationwillterminate/1873373#18733732Answer by Ben Gottlieb for Question concerning dealloc and applicationWillTerminateBen Gottlieb2009-12-09T11:44:54Z2009-12-09T11:44:54Z<p>you don't need to worry about 'cleaning up' memory when your app quits; the OS will nuke your address space from orbit (it's the only way to be sure). If you have non-memory-related cleanup to do (perhaps save temp info to a file), that should go in applicationWillTerminate:. No need to call [self release].</p>
http://stackoverflow.com/questions/1870038/how-can-i-show-a-uidatepicker-instead-of-a-keyboard-when-a-user-selects-a-uitextf/1870066#18700661Answer by Ben Gottlieb for How can I show a UIDatePicker instead of a keyboard when a user selects a UITextField?Ben Gottlieb2009-12-08T21:44:43Z2009-12-08T21:44:43Z<p>I would implement this by just animating a view containing the UIDatePicker, a Done, and Cancel button) up from the bottom of the screen. Using CoreAnimation, this should be pretty easy.</p>
http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#18643032Answer by Ben Gottlieb for iphone - stop and restore methodBen Gottlieb2009-12-08T03:01:29Z2009-12-08T14:06:14Z<p>At some point you should invalidate the timer. You'll need to store a reference to it in order to do this:</p>
<p>In your header file:</p>
<pre><code>@class myClass : NSObject {
....
NSTimer *timer;
CGPoint originalPoint;
...
}
@property (nonatomic, readwrite, assign) NSTimer *timer;
@property (nonatomic, readwrite) CGPoint originalPoint;
</code></pre>
<p>In your implementation file:</p>
<pre><code>self.originalPoint = jb.position;
self.timer = [NSTimer scheduledTimerWithTimeInterval…
</code></pre>
<p>as some later point:</p>
<pre><code>[self.timer invalidate];
self.timer = nil; //very important, to avoid dangling pointers
jb.position = self.originalPoint;
</code></pre>
http://stackoverflow.com/questions/1867147/whats-the-different-between-nibnameornil-and-viewdidload-methods/1867181#18671811Answer by Ben Gottlieb for whats the different between nibNameOrNil and ViewDidLoad methods ?Ben Gottlieb2009-12-08T14:05:43Z2009-12-08T14:05:43Z<p>I think you may be confusing things here. nibNameOrNil is (usually) an argument name, frequently for -initWithNibName:bundle:. As such, it should be the name of your nib (.xib) file. -viewDidLoad is a method, and is called after your viewController has had it's view instantiated for the first time.</p>
http://stackoverflow.com/questions/1864296/problem-with-writetofile-with-array-of-nsdictionary-objects/1864312#18643120Answer by Ben Gottlieb for Problem with writeToFile with array of NSDictionary objectsBen Gottlieb2009-12-08T03:04:27Z2009-12-08T03:04:27Z<p>-writeToFile should work, assuming EVERY object, no matter how 'deep' in your original array, is either an NSNumber, an NSString, an NSDate, an NSBoolean, an NSDictionary, or an NSArray. If there's any other sort of object in there, it will fail.</p>
http://stackoverflow.com/questions/1861752/send-programatic-email-through-objective-c/1861776#18617761Answer by Ben Gottlieb for Send programatic email through Objective-CBen Gottlieb2009-12-07T18:02:00Z2009-12-07T18:02:00Z<p>There's no way to do this in iPhone OS 3.0 (without jailbreaking, of course). To send email, you must use the MFMailComposeViewController.</p>
http://stackoverflow.com/questions/1857817/how-can-i-send-two-arguments-in-a-selector-method/1857831#18578312Answer by Ben Gottlieb for How can I send two arguments in a selector method?Ben Gottlieb2009-12-07T04:34:58Z2009-12-07T04:34:58Z<p>control targets only accept one argument for their actions: the control that's being manipulated. There's no way to do what you want (the OS just doesn't support it).</p>
http://stackoverflow.com/questions/1857697/determine-the-app-ids-of-applications-on-iphone/1857744#18577443Answer by Ben Gottlieb for Determine the app IDs of applications on iPhoneBen Gottlieb2009-12-07T04:05:02Z2009-12-07T04:05:02Z<p>You cannot do this without Jailbreaking the phone. Apple 'sandboxes' each app, so it cannot see outside of its box. If you had a particular application in mind, and that application had a URL scheme, you could check to see if that scheme was supported (which would indicate the app was probably installed), but that's as close as you're going to get.</p>
http://stackoverflow.com/questions/1856537/how-do-you-hide-the-reorder-control-in-a-uitableviewcell-without-using-reload/1856547#18565470Answer by Ben Gottlieb for How do you hide the reorder control in a UITableViewCell without using reload?Ben Gottlieb2009-12-06T20:45:33Z2009-12-06T20:45:33Z<p>The re-order control should only be visible when the table is in editing mode. To show it for a particular row, you need to implement –tableView:canMoveRowAtIndexPath: in your tableView's datasource. There should be no reason to call -reloadData just to show this control.</p>
http://stackoverflow.com/questions/1852319/uinavigationbar-gradient-details1UINavigationBar gradient detailsBen Gottlieb2009-12-05T14:23:15Z2009-12-05T15:26:54Z
<p>I'm trying to recreate the look of a UINavigationBar. The background of the bar is drawn using a gradient, but it's unclear exactly what the default colors and points are in it. Has anyone done anything in this area?</p>
http://stackoverflow.com/questions/1837700/iphone-volume-mute-buttons/1837726#18377262Answer by Ben Gottlieb for iPhone - Volume/Mute ButtonsBen Gottlieb2009-12-03T04:53:05Z2009-12-03T04:53:05Z<p>Sorry, this is not in the public API, and is not accessible by 'well-behaved' apps.</p>
http://stackoverflow.com/questions/1837702/tableview-and-uinavgation-controller-problem/1837723#18377230Answer by Ben Gottlieb for Tableview and uinavgation controller problemBen Gottlieb2009-12-03T04:51:59Z2009-12-03T04:51:59Z<p>I would suggest using a standard UIViewController if you're looking for more control over the table portion. UITableViewController makes some assumptions that you might not like.</p>
http://stackoverflow.com/questions/1836476/iphone-how-do-you-put-25000-non-consumable-items-up-for-in-app-purchase/1837131#18371311Answer by Ben Gottlieb for IPHONE: How do you put 25000 non-consumable items up for in-app purchaseBen Gottlieb2009-12-03T01:39:05Z2009-12-03T01:39:05Z<p>From what I understand, there's a limit of 1000 in-app purchase products PER APP in iTunes Connect.</p>
http://stackoverflow.com/questions/1816144/uipagecontrol-help/1816340#18163400Answer by Ben Gottlieb for UIPageControl HelpBen Gottlieb2009-11-29T18:36:08Z2009-11-29T18:36:08Z<p>You'll want to use a UIScrollView, and then, as a sibling, position the UIPageControl over it. Then put each of your pages into the scroll view and turn paging on for it. This way each 'flick' will move the scroll view one page over.</p>
<p>Now, assign your view controller to be the delegate of the scroll view, and watch for scrollViewDidEndScrollAnimation, and use the contentOffset to determine which page is current.</p>
http://stackoverflow.com/questions/1816185/iphone-listing-all-views-and-subviews-created-by-my-app/1816326#18163262Answer by Ben Gottlieb for IPHONE: listing all views and subviews created by my appBen Gottlieb2009-11-29T18:33:20Z2009-11-29T18:33:20Z<p>I have a category that adds the following method to UIView for this sort of thing:</p>
<pre><code>- (NSArray *) allSubviews {
NSMutableArray *subviews = [self.subviews mutableCopy];
for (UIView *view in self.subviews) {
[subviews addObjectsFromArray: [view allSubviews]];
}
return subviews;
}
</code></pre>
<p>You can then NSLog() the returned array. Alternatively, for a little more detail, you could use the following:</p>
<pre><code>- (NSString *) hierarchyToStringWithLevel: (int) level {
NSMutableString *results = [NSMutableString stringWithString: @"\n"];
for (int i = 0; i < level; i++) {
[results appendFormat: @"-\t"];
}
[results appendFormat: @"[%@, 0x%X], %@", [self class], self, NSStringFromCGRect(self.frame)];
for (UIView *child in self.subviews) {
[results appendFormat: @"%@", [child hierarchyToStringWithLevel: level + 1]];
}
return results;
}
</code></pre>
http://stackoverflow.com/questions/1816055/how-to-raise-a-double-value-by-power-of-12/1816065#18160650Answer by Ben Gottlieb for How to raise a double value by power of 12?Ben Gottlieb2009-11-29T17:07:35Z2009-11-29T17:07:35Z<p>That's the right syntax for pow, what format string are you passing to NSLog(…)?</p>
http://stackoverflow.com/questions/1472631/registering-an-event-notification-for-location-and-speed-in-iphone/1814530#18145300Answer by Ben Gottlieb for Registering an event/notification for location and speed in iPhoneBen Gottlieb2009-11-29T03:15:36Z2009-11-29T03:15:36Z<p>Sure, just set up a Core Location delegate to receive updates, and check the speed property of incoming CLLocation objects. When you get the desired speed, post an NSNotification.</p>
http://stackoverflow.com/questions/1814267/on-iphone-os-how-can-i-programmatically-check-if-a-contact-exists-in-the-address/1814313#18143132Answer by Ben Gottlieb for On iPhone OS, how can I programmatically check if a contact exists in the address book?Ben Gottlieb2009-11-29T01:02:58Z2009-11-29T01:02:58Z<p>Use ABAddressBookCopyPeopleWithName() to fetch a list of potential matches from the Address Book, and then iterate through them to see if they're the name you're adding.</p>
http://stackoverflow.com/questions/1907483/multiple-tab-bar-controller/1907505#1907505Comment by Ben Gottlieb on multiple tab bar controller ?Ben Gottlieb2009-12-15T14:19:02Z2009-12-15T14:19:02ZI've seen worse in the AppStore, so if you don't get a cranky reviewer, you shouldn't have a problem. It will, however, confuse the user. Use a UINavigationController instead.http://stackoverflow.com/questions/1903186/uipagecontrol-tap-to-swipe/1903429#1903429Comment by Ben Gottlieb on UIPageControl tap to "swipe" ?Ben Gottlieb2009-12-15T04:08:31Z2009-12-15T04:08:31ZTry using -[UIPageControl addTarget:action:forControlEvents].http://stackoverflow.com/questions/1878281/disable-a-webkit-webview/1878345#1878345Comment by Ben Gottlieb on Disable a WebKit WebViewBen Gottlieb2009-12-10T20:07:43Z2009-12-10T20:07:43Zwell, you could set the userInteractionEnabled to false while it's loading, then, once it's loaded, run a script to disable everything and set its userinteraction to on.http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#1864303Comment by Ben Gottlieb on iphone - stop and restore methodBen Gottlieb2009-12-09T01:23:38Z2009-12-09T01:23:38ZI think we've gotten a bit far afield from timers; you may want to post a new question.http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#1864303Comment by Ben Gottlieb on iphone - stop and restore methodBen Gottlieb2009-12-08T23:41:08Z2009-12-08T23:41:08Zno, but you could use an NSArray or NSDictionary to store your points in, using +[NSValue valueWithCGPoint:]http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#1864303Comment by Ben Gottlieb on iphone - stop and restore methodBen Gottlieb2009-12-08T21:45:23Z2009-12-08T21:45:23ZYou'll need to store the original location for any object whose position you want to restore when the animation finishes.http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#1864303Comment by Ben Gottlieb on iphone - stop and restore methodBen Gottlieb2009-12-08T16:38:28Z2009-12-08T16:38:28Ztimers are retained by the run loop when scheduled, so you don't have to retain it. When you invalidate it, the runloop will release it, so you nil it out there to prevent a dangling reference.http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#1864303Comment by Ben Gottlieb on iphone - stop and restore methodBen Gottlieb2009-12-08T14:06:32Z2009-12-08T14:06:32ZOops, forgot a word. Code has been updated.http://stackoverflow.com/questions/1864282/iphone-stop-and-restore-method/1864303#1864303Comment by Ben Gottlieb on iphone - stop and restore methodBen Gottlieb2009-12-08T12:49:41Z2009-12-08T12:49:41ZWhen you call [self.timer invalidate], you can then set jb.center to the original position. Perhaps add an additional member variable to store the original position.http://stackoverflow.com/questions/1864328/button-background-setting/1864340#1864340Comment by Ben Gottlieb on Button background settingBen Gottlieb2009-12-08T03:37:25Z2009-12-08T03:37:25ZActually, that's reversed: set the alpha to 100% to get your original color back. 0% means completely transparent.http://stackoverflow.com/questions/1857697/determine-the-app-ids-of-applications-on-iphone/1857744#1857744Comment by Ben Gottlieb on Determine the app IDs of applications on iPhoneBen Gottlieb2009-12-07T22:34:58Z2009-12-07T22:34:58Zactually, in 3.0, UApplication has a -canOpenURL: method that will tell you if that URL scheme is supported.http://stackoverflow.com/questions/346834/best-practices-for-implementing-a-modal-alert-view-using-cocoa-touch/1857526#1857526Comment by Ben Gottlieb on Best Practices for implementing a modal Alert View using Cocoa Touch?Ben Gottlieb2009-12-07T02:50:24Z2009-12-07T02:50:24Zshow adds the alert view to the view hierarchy, which retains it. If you don't -release or -autorelease it, you'll have a leak.http://stackoverflow.com/questions/1852319/uinavigationbar-gradient-details/1852472#1852472Comment by Ben Gottlieb on UINavigationBar gradient detailsBen Gottlieb2009-12-06T04:40:32Z2009-12-06T04:40:32ZThis is much better than a single gradient (what I was using before), but, even after adjusting colors, it still doesn't look right.http://stackoverflow.com/questions/1790823/is-there-a-way-to-get-to-know-if-the-user-is-on-call-while-using-my-app/1790867#1790867Comment by Ben Gottlieb on Is there a way to get to know if the user is on call while using my app?Ben Gottlieb2009-12-02T15:42:25Z2009-12-02T15:42:25ZI'd hope so too, plus I'm still holding out hope for AT&T tethering!http://stackoverflow.com/questions/1370369/nstableview-responding-to-first-click-in-a-panel/1370404#1370404Comment by Ben Gottlieb on NSTableView responding to first click in a panelBen Gottlieb2009-12-01T04:24:39Z2009-12-01T04:24:39ZDid 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.