User Jeffrey Forbes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T00:13:57Z http://stackoverflow.com/feeds/user/28019 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1792128/problems-getting-httpriot-working/1793311#1793311 0 Answer by Jeffrey Forbes for problems getting HTTPRiot working Jeffrey Forbes 2009-11-24T22:15:46Z 2009-11-24T22:15:46Z <p>2 Things:</p> <p>1-- you're using class methods wrong. +initialize is a method that is guaranteed to be called once by the runtime. It's good for setting up static variables and the like (in a thread safe way)</p> <p>you want to use -(id)init for setting that up. You are calling 'self' in a class method for both initialize and runTest, which either is garbage or nil. Make runTest an instance method instead, and I am sure you'll get results.</p> <p>2 -- Check the stuff coming in and out of the app using Charles.</p> <p><a href="http://www.charlesproxy.com/" rel="nofollow">http://www.charlesproxy.com/</a></p> <p>If you're getting the expected responses from the server, then yeah, its your app.</p> http://stackoverflow.com/questions/296967/animation-end-callback-for-calayer 0 Animation End Callback for CALayer? Jeffrey Forbes 2008-11-17T21:17:15Z 2009-11-19T18:54:23Z <p>Hi all. I'm wondering where the callbacks are (or if there are anything) for animations in a CALayer. Specifically, for implied animations like altering the frame, position, etc. In a UIView, you could do something like this:</p> <pre><code>[UIView beginAnimations:@"SlideOut" context:nil]; [UIView setAnimationDuration:.3]; [UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector:@selector(animateOut:finished:context:)]; CGRect frame = self.frame; frame.origin.y = 480; self.frame = frame; [UIView commitAnimations]; </code></pre> <p>Specifically, the <code>setAnimationDidStopSelector</code> is what I want for an animation in a CALayer. Is there anything like that?</p> <p>TIA.</p> http://stackoverflow.com/questions/1616172/iphone-sdk-not-sure-why-i-am-not-receiving-uitextfield-events/1616233#1616233 1 Answer by Jeffrey Forbes for iphone SDK: Not sure why I am not receiving UITextField events? Jeffrey Forbes 2009-10-23T22:21:21Z 2009-10-23T22:21:21Z <p>You have to set the delegate properly. You observe the protocol, but you need to do this:</p> <pre><code>@interface YourController : UIViewController&lt;UITextFieldDelegate&gt; { IBOutlet UITextField* field; } @end @implementation YourController -(void)viewDidLoad { [field setDelegate:self]; } </code></pre> <p>And you will receive the events. Alternatively, you can set the delegate in Interface Builder as well, along with doing it programmatically in loadView, allocating the field and setting the delegate.</p> <p>Additionally, try to use NSNotificationCenter as little as possible. Notifications are somewhat obsolete unless there isn't really a direct path between you and the object in question. Just a small comment on the answer above.</p> http://stackoverflow.com/questions/1196777/how-accurate-is-cllocation-accuracy/1198201#1198201 0 Answer by Jeffrey Forbes for How accurate is CLLocation accuracy? Jeffrey Forbes 2009-07-29T05:36:06Z 2009-07-29T05:36:06Z <p>The CoreLocation framework gives you the radius of the circle for every CLLocation you get using the horizontalAccuracy/verticalAccuracy properties. You can specify to the CLLocationManager a desiredAccuracy property that use these types:</p> <p><code>kCLLocationAccuracyNearestTenMeters, kCLLocationAccuracyHundredMeters, kCLLocationAccuracyKilometer, kCLLocationAccuracyThreeKilometers;</code></p> <p>So you get notifications when you get inside your desired range. That said, when you use the CLLocationManager the first event is given to you ASAP, and then the proceeding events are the ones that satisfy your conditions.</p> http://stackoverflow.com/questions/1198149/avaudioplayer-not-responding/1198180#1198180 2 Answer by Jeffrey Forbes for AVAudioPlayer not responding Jeffrey Forbes 2009-07-29T05:26:37Z 2009-07-29T05:26:37Z <p>I have 2 quick suggestions:</p> <ol> <li><p>Check to see if that path actually gives you data. Alloc a NSData object using [[NSData alloc] initWithContentsOfFile:path] and inspect it in the debugger to see if you're actually loading that wav file.</p></li> <li><p>I wrote a sample project that uses AVAudioPlayer here: <a href="http://9mmedia.com/blog/?p=308" rel="nofollow">AVAudioPlayer Example</a>. As the code is pretty much the same as yours, the only thing I can imagine is that there is a problem with your data. </p></li> </ol> <p>Check those out and see if it gets you anywhere!</p> http://stackoverflow.com/questions/1085316/easy-way-to-archive-interlinked-objects/1085616#1085616 0 Answer by Jeffrey Forbes for Easy way to archive interlinked objects Jeffrey Forbes 2009-07-06T06:05:09Z 2009-07-06T06:05:09Z <p>Check out Object serialization here:</p> <p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Archiving/Tasks/codingobjects.html#//apple%5Fref/doc/uid/20000948" rel="nofollow">Encoding/Decoding Objects (apple.com)</a></p> <p>Basically, you have to make your classes Key-Value Coding compliant, to properly save all of your data; It archives them into binary property lists. After you write your initWithCoder: and encodeWithCoder: functions it's pretty much automatic!</p> http://stackoverflow.com/questions/1085596/why-do-these-errors-in-xcode-mean/1085609#1085609 1 Answer by Jeffrey Forbes for Why do these errors in Xcode Mean? Jeffrey Forbes 2009-07-06T06:00:03Z 2009-07-06T06:00:03Z <p>You (or some code) appears to be using key-value coding on your classes. I assume there's a hotKeyDisplayEntry ivar somewhere, maybe defined in a nib and a connection made but not in your class?</p> <p>Also read this:</p> <p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueCoding/Concepts/BasicPrinciples.html" rel="nofollow">Key-Value Coding in Cocoa (apple.com)</a></p> <p>If it isn't the above it is probably either specified an Observer on an ivar or are using object serialization and don't actually have an accessor method for it, and thus throws an exception. Either or, you need to expand a bit on what you are actually doing for me to help you!</p> http://stackoverflow.com/questions/202792/is-there-a-performance-hit-for-using-uiimage-in-calayer 2 Is there a performance hit for using UIImage in CALayer? Jeffrey Forbes 2008-10-14T20:57:55Z 2009-05-21T19:04:30Z <p>I'm using a whole bunch of CALayers, creating a tile-based image not unlike GoogleMaps (different versions of the same image with more/less detail).</p> <p>The code I'm using to do this is:</p> <pre><code>UIImage* image = [self loadImage:obj.fileName zoomLevel:obj.zoomLevel]; [CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions]; obj.layerToAddTo.contents = [image CGImage]; [CATransaction commit]; </code></pre> <p>I don't really feel like loading the CGImage from file using CoreGraphics because I'm lazy. But I will if there's a big performance boost! LoadImage just mangles a string to get the right path for loading said image, and obj is a NSObject-struct that holds all the info I need for this thread. </p> <p>Help?</p> http://stackoverflow.com/questions/248985/nsoperationqueue-operations-returns-an-empty-array-when-it-shouldnt 9 -[NSOperationQueue operations] returns an empty array when it shouldn't? Jeffrey Forbes 2008-10-30T01:18:29Z 2009-05-13T23:10:19Z <p>I'm writing an application that does async loading of images onto the screen. I have it set up to be NOT concurrent (that is, it spawns a thread and executes them one at a time), so I've only overridden the <code>[NSOperation main]</code> function in my NSOperation subclass. </p> <p>Anyway, so when I add all of these operations, I want to be able later to access the queued operations to change their priorities. Unfortunately, whenever I call <code>-[NSOperationQueue operations]</code>, all I get back is an empty array. The best part is that after putting in some console print statements, threads are still in the queue and executing (indicated by prints) despite the array being empty! </p> <p>What gives? I also took a look at theadcount just to make sure they're all not executing at once and that does not appear to be the case. </p> <p>Any ideas? Pulling my hair out on this one.</p> <p>EDIT: Also worth mentioning that the same code provides a full array when run in the simulator :(</p> http://stackoverflow.com/questions/793719/play-two-sounds-simultaneously-iphone-sdk/794581#794581 2 Answer by Jeffrey Forbes for play two sounds simultaneously iphone sdk Jeffrey Forbes 2009-04-27T18:05:27Z 2009-04-27T18:05:27Z <p>You would have to use AudioQueueServices. The docs are here:</p> <p><a href="http://developer.apple.com/documentation/MusicAudio/Reference/AudioQueueReference/Reference/reference.html" rel="nofollow">Apple.com - AudioQueueServices Reference</a></p> <p>Essentially you would have to write some code to open up multiple outputs, and then prime the queue and have them block before AudioQueueStart(AudioQueueRef aq) until everything was primed and ready and then let them go.</p> <p>AVAudioPlayer isn't really good enough for this sort of thing, unfortunately.</p> http://stackoverflow.com/questions/309880/custom-view-transition-in-opengl-es/312112#312112 2 Answer by Jeffrey Forbes for Custom view transition in OpenGL ES Jeffrey Forbes 2008-11-23T04:16:56Z 2008-11-23T04:16:56Z <p>While I cannot completely answer your question without doing some more research of my own, I can help a bit:</p> <p>-In order to get the view of a UINavigationController, you need to take a screenshot. The easiest way to do this is by grabbing it into a UIImage:</p> <pre><code>UIGraphicsBeginImageContext(self.view.frame.size); [[self.view layer] renderInContext:UIGraphicsGetCurrentContext()]; UIImage* test = UIGraphicsGetImageFromCurrentImageContext(); UIImageView* view = [[UIImageView alloc] initWithImage:test]; UIGraphicsEndImageContext(); </code></pre> <p>I am not sure if you can render a GLContext (not familiar on the phone) into a CGImage, but I would do something like that (and init a UIImage from that). I would prerender every frame of the animation you are trying to do and slap it into an UIImageView using the animation stuff provided within. That is, if your animation is simple enough. Otherwise, it might come down to writing your own animation function :-/</p> http://stackoverflow.com/questions/296967/animation-end-callback-for-calayer/297045#297045 1 Answer by Jeffrey Forbes for Animation End Callback for CALayer? Jeffrey Forbes 2008-11-17T21:41:31Z 2008-11-17T21:41:31Z <p>I answered my own question. You have to add an animation using CABasicAnimation like so:</p> <pre><code> CABasicAnimation* anim = [CABasicAnimation animationWithKeyPath:@"frame"]; anim.fromValue = [NSValue valueWithCGRect:layer.frame]; anim.toValue = [NSValue valueWithCGRect:frame]; anim.delegate = self; [layer addAnimation:anim forKey:@"frame"]; </code></pre> <p>And implement the delegate method <code>animationDidStop:finished:</code> and you should be good to go. Thank goodness this functionality exists! :D</p> http://stackoverflow.com/questions/266554/what-are-the-iphone-app-name-restrictions-and-where-are-they-documented/266563#266563 0 Answer by Jeffrey Forbes for What are the iPhone app-name restrictions? (And [where] are they documented?!) Jeffrey Forbes 2008-11-05T20:37:28Z 2008-11-05T20:37:28Z <p>OSX in general supports UTF8 natively, throughout Cocoa to the Filesystem.</p> <p>An example in 日本語: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=294753911&amp;mt=8" rel="nofollow">http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=294753911&amp;mt=8</a></p> <p>If I had to guess, you probably have to name your application something in ASCII but you can make the application title UTF8. Not sure though.</p> http://stackoverflow.com/questions/260523/how-do-i-set-uitableviewcellselectionstyle-property-to-some-custom-color/260697#260697 2 Answer by Jeffrey Forbes for How do I set UITableViewCellSelectionStyle property to some custom color? Jeffrey Forbes 2008-11-04T02:56:11Z 2008-11-04T02:56:11Z <p>Override didSelectRowAtIndexPath: and draw a UIView of a color of your choosing and insert it behind the UILabel inside the cell. I would do it something like this:</p> <pre><code>UIView* selectedView; //inside your header - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell* cell = [tableView cellAtIndexPath:indexPath]; selectedView = [[UIView alloc] initWithFrame:[cell frame]]; selectedView.backgroundColor = [UIColor greenColor]; //whatever [cell insertSubview:selectedView atIndex:0]; //tweak this as necessary [selectedView release]; //clean up } </code></pre> <p>You can choose to animate this view out when it gets deselected and will satisfy your requirements.</p> http://stackoverflow.com/questions/252101/timer-and-animation-events-trumping-touchesended-events/255022#255022 1 Answer by Jeffrey Forbes for Timer and animation events trumping TouchesEnded events Jeffrey Forbes 2008-10-31T21:32:57Z 2008-10-31T21:32:57Z <p>Try writing your own Timer-type class by spawning off onto a thread. Example:</p> <pre><code>BOOL continue = YES; //outside of your @implementation -(void)doLoop { while(continue){ [NSThread sleepForTimeInterval:.025]; [self performSelectorOnMainThread:@selector(whateverTheFunctionIs) waitUntilDone:YES]; } } </code></pre> <p>and this would be started by <code>[NSThread detatchNewThreadSelector:@selector(doLoop) toTarget:self withObject:nil]</code>. This is not exactly threadsafe, but you can choose to wrap the boolean into a NSNumber and then do @synchronize on it if you so choose. Alternatively, after I wrote that little snippet I realized it would be better to do a check against the current NSTime instead of sleepForTimeInterval: but you get the point. :)</p> http://stackoverflow.com/questions/1616172/iphone-sdk-not-sure-why-i-am-not-receiving-uitextfield-events/1616233#1616233 Comment by Jeffrey Forbes on iphone SDK: Not sure why I am not receiving UITextField events? Jeffrey Forbes 2009-10-23T22:22:24Z 2009-10-23T22:22:24Z I realized that you have the delegate hooked up. Are you sure you have the outlets/delegates set up correctly?