User benzado - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:15:26Z http://stackoverflow.com/feeds/user/10947 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837899/my-value-in-uitableview-is-repeated-after-11th-row-in-objective-c/1838587#1838587 1 Answer by benzado for My value in UITableview is repeated after 11th row in objective-c. benzado 2009-12-03T08:51:34Z 2009-12-03T08:51:34Z <p>In your table view data source you are probably calling dequeue to get a recycled UITableViewCell instance. If it returns nil, you are creating a new cell and putting the right data in it. If it returns a recycled cell, you are probably not updating it.</p> <p>Move your updating code so that it is executed whether the cell is recycled or new.</p> http://stackoverflow.com/questions/1787254/showing-an-alert-in-an-iphone-top-level-exception-handler/1838545#1838545 0 Answer by benzado for Showing an alert in an iPhone top-level exception handler benzado 2009-12-03T08:43:17Z 2009-12-03T08:43:17Z <p>I don't know exactly how <code>[alertView show]</code> is implemented, but I imagine it makes some changes to the view hierarchy and then sets itself to display the alert on the next pass through the run loop (look up <code>NSRunLoop</code>).</p> <p>But, since the app is about to quit, control doesn't return to the run loop, so the alert is never displayed. That's why you see the screen dim (the alert-level UIWindow is immediately added by <code>show</code>) but the alert doesn't appear (that would happen in the run loop).</p> <p>If you include <code>[[NSRunLoop currentRunLoop] run]</code> at the end of your exception handler, the alert may appear.</p> <p>If you want to let your app quit once the alert is done, you can probably do so by calling NSRunLoop's <code>runUntilDate:</code> in a while-loop, checking the value of a flag to see if the alert has been dismissed yet. If it has, simply exit the handler function and you're good to go. That means you'll have to set a delegate object on the alert which sets that flag.</p> <p>If you want to let your app continue running... there I'm not so sure. You could just let the run loop continue to run out of the exception handler, but there might be bad/strange side effects to that. So you probably should let the app quit. Besides, if you're sure you can recover from the exception, you should have caught it somewhere.</p> http://stackoverflow.com/questions/1830051/string-variable-help-needed-iphone-sdk/1830085#1830085 5 Answer by benzado for String & variable Help needed - iphone sdk benzado 2009-12-02T01:15:59Z 2009-12-02T01:15:59Z <pre><code>textbox.text = [NSString stringWithFormat:@"Your name is %@", variable1]; </code></pre> <p>Read the documentation for <code>stringWithFormat:</code> to learn about string format specifiers. Basically, you have a format string that contains codes like <code>%@</code>, and the following arguments are put in place of those escape codes.</p> <p>It has the same syntax as the old C-style <code>printf()</code> function. Cocoa's logging function, <code>NSLog()</code>, also works the same way.</p> <p>If you need to combine a lot of strings together, try also reading about <code>NSMutableString</code>.</p> <p>You could also do:</p> <pre><code>textbox.text = [@"Your name is " stringByAppendingString:variable1]; </code></pre> <p>But if you have to concatenate more than two things, <code>stringWithFormat:</code> is much more concise.</p> http://stackoverflow.com/questions/1830014/swapping-a-uiview-instance-variable-cannot-dealloc-previous-view/1830069#1830069 1 Answer by benzado for "Swapping" a UIView Instance variable - cannot dealloc "previous" view benzado 2009-12-02T01:10:40Z 2009-12-02T01:10:40Z <p>You need to follow retain/release rules more closely. You definitely should not experimentally add retain and release and autorelease in places just to find something that works. There's plenty written about Cocoa memory management already, I won't repeat it here.</p> <p>Specifically, BGTangramLevel's <code>levelWithColor:frame:</code> method should be calling <code>[allocatedLevel autorelease]</code> before returning allocatedLevel to its caller. It doesn't own the object, it's up to the caller to retain it.</p> <p>You also need to know the difference between accessing an instance variable and accessing a property. Cocoa's properties are just syntactic-sugar for getter and setter methods. When you reference <code>currentLevel</code> in your view controller you are dealing with the instance variable directly. When you reference <code>self.currentLevel</code> you are dealing with the property.</p> <p>Even though you've declared a property, <code>currentLevel = [BGTangram ...]</code> simply copies a reference into the variable. In <code>viewDidLoad</code>, you need to use <code>self.currentLevel = [BGTangram ...]</code> if you want to go through the property's setter method, which will retain the object (because you declared the property that way). See the difference?</p> <p>I think your leak is happening in <code>finishedCurrentLevel</code>. If you had used <code>self.currentLevel = [BGTangram ...]</code>, the property's setter method would be called, which would release the old object and retain the new one. Because you assign to the instance variable directly, you simply overwrite the reference to the old level without releasing it.</p> <p>Calling <code>[currentLevel release]</code> in the <code>dealloc</code> method of your view controller is correct.</p> http://stackoverflow.com/questions/1826913/delayed-uiimageview-rendering-in-uitableview/1828707#1828707 0 Answer by benzado for Delayed UIImageView Rendering in UITableView benzado 2009-12-01T20:30:39Z 2009-12-01T20:30:39Z <p>You should read up on NSRunLoop. I suspect that, during scrolling, the run loop is running in NSEventTrackingRunLoopMode, and the NSURLConnection isn't included in that mode. You could probably get around this by calling NSURLConnection's scheduleInRunLoop:forMode:, so that download can happen during scrolling.</p> <p>This will probably affect scrolling performance, which is probably the reason for the separate run loop mode in the first place. But try it out and see how it feels!</p> http://stackoverflow.com/questions/1704229/using-tcpdump-how-do-i-see-as-plainly-as-possible-an-unencrypted-smtp-conversati/1738305#1738305 0 Answer by benzado for Using tcpdump, how do I see as plainly as possible an unencrypted SMTP conversation? benzado 2009-11-15T18:10:21Z 2009-11-15T18:10:21Z <p><code>tcpdump -A</code> (instead of <code>-X</code>) will print packet contents in ASCII.</p> http://stackoverflow.com/questions/1738200/iphone-custom-drawn-uitableviewcell-how-to-load-insert-images-from-the-web-in/1738261#1738261 2 Answer by benzado for iPhone custom drawn UITableViewCell , how to load + insert images from the web in a thread? benzado 2009-11-15T17:56:33Z 2009-11-15T17:56:33Z <p>The solution is going to have to be more sophisticated, because by default UITableView recycles cells (when one scrolls off the top it is moved to the bottom and reconfigured with new data). Therefore it's possible that you start downloading an image but the cell's content is changed before the download is complete.</p> <p>In <code>cellForRowAtIndexPath:</code>, you should get the image from a cache (your myProduct object, an NSArray, whatever). If it's not there, you should check a flag to see if it is already being loaded. If it isn't already being loaded, then you set that flag and detach a new thread (you should look into <code>NSOperation</code>, it will queue up the work and protect you from launching too many threads at once).</p> <p>In your thread, you should download the image and then use <code>performSelectorOnMainThread:target:waitUntilDone:</code> to call a method on the main thread with the image. That method can update the cache, set the isLoading flag to NO, and update the cell. It's important to do it this way, because Cocoa requires that all your UI update code be on the main thread.</p> <p>I hope that's a useful outline of what to do.</p> http://stackoverflow.com/questions/796489/iphone-facebook-icon-in-screen-grab-for-submission/1738191#1738191 0 Answer by benzado for iphone facebook icon in screen grab for submission benzado 2009-11-15T17:32:38Z 2009-11-15T17:32:38Z <p>Apple will protect their own copyrights and trademarks but isn't much interested in third-parties'. Who's to say you didn't get permission from Facebook to use their icon? If Apple rejected you for it, it would put them in the position of requiring you to submit proof to them that you have permission, which means they would be reviewing legal agreements between two other parties... why bother? It's easier for them to approve it and, if Facebook has a problem, let Facebook come after you themselves.</p> <p>So, in brief, it wouldn't violate the SDK agreement; but you might get grief from Facebook if Facebook finds out about it.</p> http://stackoverflow.com/questions/1291110/capture-iphone-screen-with-status-bar-included/1738157#1738157 0 Answer by benzado for Capture iPhone screen with status bar included? benzado 2009-11-15T17:23:58Z 2009-11-15T17:23:58Z <p>Instead of using private API, why not render the entire UIWindow into the image context? It might be enough to replace <code>self.view</code> with <code>self.view.window</code> in your code.</p> <p>You can also get the current window(s) as a property of the <code>[UIApplication sharedApplication]</code> instance. It's possible the status bar is on a separate window layer and maybe you'll have to render the windows in order.</p> <p>At any rate, you probably don't need to resort to private API.</p> http://stackoverflow.com/questions/593147/how-to-display-a-progress-indicator-overlay-hud-on-iphone 5 How to display a progress indicator overlay/HUD on iPhone? benzado 2009-02-27T00:51:43Z 2009-11-13T06:49:18Z <p>I want to display a progress indicator in a semi-transparent box that floats over a table view. In other words, when the table contents are being downloaded, I want an "Updating" label to appear over it.</p> <p>I have seen this in several apps in the store, notably Facebook (when you shake to reload) and Darkslide.</p> <p>My first impulse is to create a semi-transparent UIView, place a UILabel and a UIProgressIndicatorView inside it, and add it to the view hierarchy... but where? <strike>A UIView may not overlap its siblings, so I can't make it a subview of the window. </strike> I also can't make it a subview of the table, because then it will scroll up and down with the table content.</p> <p>I thought about creating a new UIWindow, but the documentation basically says <em>don't</em>.</p> <p>I know CALayers can overlap each other, so that would be an option, but I can't put a progress indicator inside a CALayer, can I? Should I roll my own progress indicator that animates a CALayer instead of a UIView?</p> <p>I'm not interested in hearing about <a href="http://stackoverflow.com/questions/416015/iphone-development-non-documented-uiprogresshud-class">private APIs</a>.</p> <p><strong>Edit:</strong> The question was based on a faulty assumption. NSViews (on Mac OS X) may not overlap, but UIViews on the iPhone may.</p> http://stackoverflow.com/questions/387142/c-gsoap-parameter-passing-memory-management-issues/1634202#1634202 0 Answer by benzado for C++ - gsoap : Parameter passing memory management issues benzado 2009-10-27T23:07:59Z 2009-10-27T23:07:59Z <p>After executing this code:</p> <pre><code>output * pOutput = NULL; ns1_func1(&amp;inp1, pOutput); </code></pre> <p>pOutput will <em>always</em> be NULL, no matter what ns1_func does. You are passing the <em>value</em> of pOutput to the function, which in this case is NULL. The function has no way to change that value without knowing the <em>address</em> of pOutput (written as &amp;pOutput).</p> <p>ns1_func1 asks for a pointer to an "output" struct because that's where it wants to write the output data. So that means you need to allocate that space, either on the stack:</p> <pre><code>output theOutput; output * pOutput = &amp;theOutput; ns1_func1(&amp;inp1, pOutput); </code></pre> <p>or on the heap:</p> <pre><code>output * pOutput = malloc(sizeof(output)); ns1_func1(&amp;inp1, pOutput); ... free(pOutput); </code></pre> <p>If ns1_func1 was going to allocate the memory for you, it would have to return a pointer to the output struct. To do that, it would need to ask for the address of that pointer, or a pointer to a pointer. In other words, a declaration like:</p> <pre><code>output * pOutput = NULL; different_ns1_func1(&amp;inp1, &amp;pOutput); if (pOutput != NULL) { ... free(pOutput); } </code></pre> <p>Sorry if this is a little confusing, with all the talk of pointers to pointers, but the basic answer to your question is that <em>you</em> must allocate the memory for the function to write to because the function is asking for the <em>address of the data</em> and NOT the <em>address of a pointer to the data</em>.</p> http://stackoverflow.com/questions/1482564/iphone-setting-nsstring-from-array-double-standards/1482573#1482573 2 Answer by benzado for IPhone - Setting NSString from array, double standards! benzado 2009-09-27T01:33:55Z 2009-09-27T01:33:55Z <p>The difference between</p> <pre><code>NSString *categoryName = [categories objectAtIndex:indexPath.row]; </code></pre> <p>and</p> <pre><code>NSString *categoryName = [[NSString alloc] initWithString:@"test"]; </code></pre> <p>Is that the first line copies a pointer to the object (retain count does not change) whereas the second one creates a new object (retain count = 1).</p> <p>In <code>cellForRowAtIndexPath</code>, when you set the <code>text</code> property, it copies or retains the string, so you're fine. In <code>didSelectRowAtIndexPath</code> you are setting a property of <code>ButtonsPageViewController</code>, which I assume is your own code, but perhaps it is not copying or retaining the object.</p> <p>Also, the line</p> <pre><code>ButtonsPageViewController *bView = [ButtonsPageViewController alloc]; </code></pre> <p>is going to lead to problems. You need to call <code>init</code> to properly initialize the object. All you've done in that line is allocate memory for it.</p> <p>In general, it looks like you need to brush up on Retain/Release memory management. That should save you some trouble.</p> http://stackoverflow.com/questions/1449685/concurrent-network-client-in-cocoa/1478446#1478446 1 Answer by benzado for Concurrent network client in Cocoa benzado 2009-09-25T16:58:49Z 2009-09-25T16:58:49Z <p>If you're using CFSocket's non-blocking calls for I/O, I agree, that should all happen on the main thread, letting the OS handle the concurrency issues, since you're just copying data and not really doing any computation.</p> <p>Beyond that, it sounds like the only other work your app needs to do is maintain a queue of items to be downloaded. When any one of the transfers is complete, the CFSocket call back can initiate the transfer of the next item on the queue. (If the queue is empty, decrement your connection count, and if something is added to an empty queue, start a new transfer.) I don't see why you need multiple threads for that.</p> <p>Maybe you've left out something important, but based on your description the app is I/O bound, not CPU bound, so all of the concurrency stuff is just going to make more complicated code with minimal impact on performance.</p> <p>Do it all on the main thread.</p> http://stackoverflow.com/questions/238525/missing-ant-javamail-jar-file-on-macintosh/859744#859744 0 Answer by benzado for Missing ant-javamail.jar file on Macintosh benzado 2009-05-13T18:54:47Z 2009-05-13T18:54:47Z <p>I also got this working a slightly different way:</p> <ol> <li>Created directory <code>~/.ant/lib</code>.</li> <li>Downloaded <a href="http://java.sun.com/products/javamail/downloads/index.html" rel="nofollow">JavaMail API</a> and copied the jars into that directory.</li> <li>Downloaded <a href="http://java.sun.com/javase/technologies/desktop/javabeans/jaf/downloads/index.html" rel="nofollow">JavaBeans Activation Framework</a> and copied the jars into that directory.</li> <li>Downloaded <a href="http://archive.apache.org/dist/ant/binaries/" rel="nofollow">Apache Ant 1.7.0</a> (not the latest, matches the installed version) and copied the <code>apache-ant-1.7.0/lib/ant-javamail.jar</code> file into that directory.</li> </ol> <p>This only solves the problem for a single user account, but that was fine for my purposes and saved me the hassle of having two separate ant installations on my machine.</p> http://stackoverflow.com/questions/805353/how-many-developers-can-use-one-iphone-developer-key/805558#805558 4 Answer by benzado for How many developers can use one iPhone developer key? benzado 2009-04-30T06:14:16Z 2009-04-30T06:14:16Z <ol> <li>Two or three developers can easily share a single Developer Certificate, it just needs to be copied to each development machine. The Standard Program should be fine for your purposes.</li> <li>All of the apps you sell on iTunes will be listed under the one company or individual name. If you don't want that, you'll need to open multiple Program accounts.</li> <li>To test on a piece of hardware the code must be signed using a Developer Certificate and a Provisioning Profile which ties the app to the device (by it's UDID number).</li> </ol> <p>The point of code signing is that it identifies the source of the app, so you are free to let employees/partners share a certificate if you are willing to take responsibility for whatever they produce.</p> <p>Also, Apple uses separate certificates for Development (test as you work) and Distribution (submitting to the store), so sharing the Development Certificate doesn't put your "storefront" at risk.</p> http://stackoverflow.com/questions/711722/how-to-save-my-sanity-while-maintaining-spaghetti-code/711897#711897 1 Answer by benzado for How to save my sanity while maintaining spaghetti code benzado 2009-04-02T22:36:39Z 2009-04-02T22:36:39Z <ul> <li>Be slow and deliberate.</li> <li>Write tests when you can, but don't get dismayed when you can't. Spaghetti code is rarely testable code.</li> <li>Remember that everybody who edited the code before you had a good reason to do what they did. Assume the best of them, and you will likely be rewarded.</li> <li>Understand the code before you attempt to change the code.</li> <li>Take notes as you learn, and keep them up to date as you work. Keep and share them on a wiki if you can.</li> <li>Use a revision control system, make each change as small and focused as possible, and check in as frequently as possible.</li> <li>Don't bite off more than you can chew. As you are making one change, you will no doubt find something else that ought to be cleaned up. Add it to your to do list and remain focused on your original mission.</li> <li>Treat the project like a campsite: leave it in better condition than you found it. And remember that "better" is relative; you can't fix everything at once.</li> </ul> http://stackoverflow.com/questions/659731/iphone-ad-hoc-distribution-in-a-team-environment/684110#684110 3 Answer by benzado for iPhone ad hoc distribution in a team environment benzado 2009-03-26T00:53:19Z 2009-03-26T00:53:19Z <p>It's not a nightmare, it can just get a little confusing, especially if you give your profiles unhelpful names like "distribution profile." If you expect to have multiple sets of profiles, certificates, and keys on your computer, make sure they are named so that you know what goes with what and belongs with what.</p> <p>I posted some <a href="http://www.benzado.com/blog/iphonedev-good-practices" rel="nofollow">recommendations in this area</a> a while ago.</p> <p>My number one piece of advice is to give your private keys descriptive names. Fortunately, you can do this at any time in Keychain Access. By default they are simply named "Private Key" and if you lose the certs you'll have to resort to some <code>openssl</code> geekery to figure out which key goes with which.</p> http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/679446#679446 3 Answer by benzado for How do you read a file line by line in your language of choice? benzado 2009-03-24T22:04:31Z 2009-03-24T22:04:31Z <h2>Objective-C/Cocoa</h2> <p>I tried to keep the program as short as possible, without resorting to any standard C functions.</p> <pre><code>#import &lt;Foundation/Foundation.h&gt; int main(int argc, char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; NSString *input = [[NSString alloc] initWithContentsOfFile:@"path_to_file"]; NSArray *lineArray = [input componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]]; [input release]; int lineNumber = 1; for (NSString *line in lineArray) { NSString *output = [NSString stringWithFormat:@"%d\t%@\n", lineNumber++, line]; NSData *outputData = [output dataUsingEncoding:NSUTF8StringEncoding]; [[NSFileHandle fileHandleWithStandardOutput] writeData:outputData]; } [pool release]; return 0; } </code></pre> <p>Of course, for a large input file, you might improve performance by periodically releasing and recreating the autorelease pool inside of the loop. :-)</p> http://stackoverflow.com/questions/640909/performing-iphone-optimization-on-externally-downloaded-pngs/644498#644498 0 Answer by benzado for Performing iPhone optimization on externally downloaded PNGs. benzado 2009-03-13T20:24:05Z 2009-03-13T20:24:05Z <p>You say you are drawing on top of the image by overriding a UIView's <code>drawRect:</code> method. Are you trying to do some animation by repeatedly drawing the whole image with your custom stuff on top of it?</p> <p>You might get better results if you put your custom stuff in a separate view or layer, and let the OS deal with compositing the result over the background. The OS will only update the parts of the screen that you actually change, and won't be repainting the entire image as often.</p> http://stackoverflow.com/questions/626954/software-as-a-service-via-the-app-store/641102#641102 0 Answer by benzado for Software as a Service via the App Store benzado 2009-03-13T00:58:06Z 2009-03-13T00:58:06Z <p>I believe there are apps on the store which are tied to a subscription services, I'd recommend doing some research to see what Apple has already allowed through. What Apple is trying to prevent is the shareware model, where the app is downloaded for free and then a registration code is provided by paying the developer directly. In that scenario, Apple handles all the hosting and distribution but gets none of the proceeds.</p> <p>If you're not intentionally trying to cut them out, but are honestly charging for an ongoing service, they will probably allow that on the store. They might require that the app be somewhat functional as-is.</p> <p>Note that under the current App Store model, once you download an app, you are entitled to all updates for free in perpetuity. This is different than for music, where you have to pay again to download a song a second time. Therefore, your "top up" app idea won't work.</p> http://stackoverflow.com/questions/635125/appstore-changing-the-icon-after-the-app-is-published/641073#641073 1 Answer by benzado for AppStore: changing the icon after the app is published? benzado 2009-03-13T00:46:26Z 2009-03-13T00:46:26Z <p>If you upload a new binary, it goes through the review process, no matter how trivial the change you made. But if you want to change the icon that appears on people's devices, that is what you have to do.</p> <p>If you upload any of the store metadata (the 512x512 icon, description, screenshots), those will go through automatically. If you want to change the icon that appears in the store, you can upload a new large icon, and in a few hours that is what anyone using iTunes will see. Apple won't stop you from making them different, although they recommend against it.</p> http://stackoverflow.com/questions/640909/performing-iphone-optimization-on-externally-downloaded-pngs/641034#641034 1 Answer by benzado for Performing iPhone optimization on externally downloaded PNGs. benzado 2009-03-13T00:33:54Z 2009-03-13T00:33:54Z <p>The fact that you say it "seems" 100x slower indicates that you have not performed any experimentation, but made a guess (it must be the PNG optimization), and are now going down a path based on a hunch.</p> <p>You should spend time to confirm what the problem is before you try to solve it. My gut says that PNG optimization shouldn't be the issue: that mostly affects the loading of images, but once they are in memory it doesn't matter what file format they were originally in.</p> <p>Anyway, you should try an A-B comparison, either get your code to load an optimized PNG from somewhere else and see how it compares, or make a test app that just does some drawing on the two PNG types. Once you've confirmed what the problem is, then you can figure out if you need to compile pngcrush into your app.</p> http://stackoverflow.com/questions/637081/how-can-i-link-a-dynamic-library-in-x-code/637217#637217 1 Answer by benzado for How can I link a dynamic library in x-code? benzado 2009-03-12T02:51:52Z 2009-03-12T02:51:52Z <p>If I understand your problem correctly, your app is building fine, no errors when linking, but when you try to launch it the library cannot be found.</p> <p>That's not surprising, since the dylib file is in some arbitrary directory not on the system path. You either need to copy it into <code>/usr/lib</code> (probably not a good idea) or include it in the application bundle. The latter is probably the better approach.</p> <p>I've never tried it, but apparently you need to use a <a href="http://developer.apple.com/DOCUMENTATION/DeveloperTools/Conceptual/XcodeBuildSystem/200-Build%5FPhases/bs%5Fbuild%5Fphases.html#//apple%5Fref/doc/uid/TP40002690-CJAHHAJI" rel="nofollow">Copy Files Build Phase</a> to put the dylib inside your bundle and then <a href="http://www.codeshorts.ca/2007/nov/01/leopard-linking-making-relocatable-libraries-movin" rel="nofollow">configure Xcode</a> so that your executable will know where to find it.</p> http://stackoverflow.com/questions/617973/iphone-tabbar-viewcontrollers-in-ib-send-custom-init/636870#636870 1 Answer by benzado for [iPhone] tabBar viewControllers in IB: send custom init? benzado 2009-03-12T00:10:30Z 2009-03-12T00:10:30Z <p>Interface Builder creates an archive of objects that is unarchived when you program executes. You can't really tell IB to call particular methods.</p> <p>If you need to initialize before <code>viewWillAppear:</code> is called, you can do so in <code>awakeFromNib</code>, which is guaranteed to be called after all objects have been loaded and all outlets have been connected to their targets.</p> <p>If you want to do initialization even earlier, you can do so by overriding <code>initWithCoder:</code> (see the <code>NSCoding</code> protocol for documentation). I don't know if it is documented anywhere, but that is the designated initialized for objects being decoded from an archive.</p> <p>In all of the above, you won't be able to receive parameters, but in the code you should be able to access whatever you need with some judicious use of global variables. You can also use <code>[[UIApplication sharedApplication] delegate]</code> to get access to your application delegate object.</p> http://stackoverflow.com/questions/605425/how-to-pop-up-alert-when-http-connection-fails-on-iphone/607480#607480 2 Answer by benzado for How to pop up alert when HTTP connection fails on iPhone? benzado 2009-03-03T18:05:35Z 2009-03-03T18:05:35Z <p>Nothing is obviously wrong with your code, you will need to supply more information.</p> <p>Make sure you have a <a href="http://www.corbinstreehouse.com/blog/index.php/2008/08/your-most-important-breakpoint-in-cocoa/" rel="nofollow">breakpoint on <code>objc_exception_throw</code></a> and then run the program under the debugger. Then you can determine on what line the exception is thrown.</p> <p>A wild guess, but perhaps <code>[error localizedDescription]</code> or <code>[error localizedFailureReason]</code> is returning <code>nil</code>.</p> http://stackoverflow.com/questions/605180/what-is-the-best-trait-your-manager-can-have/605214#605214 3 Answer by benzado for What is the best trait your manager can have? benzado 2009-03-03T05:35:55Z 2009-03-03T05:35:55Z <p>The worst managers I've had were genuinely nice people, but so nice that they were afraid of making a decision that somebody might be unhappy with. As a result, any one crank in the department could effectively veto anything (e.g., uniform code reviews) simply by expressing their dislike.</p> <p>It's nice to have creative freedom, but it is more important to have <strong>leadership</strong>, to know that your manager is steering the group so you are all headed in the same direction, and ultimately that <strong>you can respect them</strong>.</p> http://stackoverflow.com/questions/600636/improving-smoothness-of-simple-animations/605185#605185 1 Answer by benzado for Improving Smoothness of Simple Animations benzado 2009-03-03T05:18:54Z 2009-03-03T05:18:54Z <p>It won't matter if you use Core Animation "directly" or animate the center property: it is choppy because the graphics hardware has to composite the transparent image with the background on every frame of the animation. You said yourself that using a completely opaque PNG makes the animation smooth.</p> <p>Try running the app under Instruments, the Core Animation tool has some checkboxes which highlight composited areas in real time and that might give you some hints about re-doing your drawing.</p> <p>If only the top 30 pixels need to be transparent, it might be worth splitting the background into two views, one 30 pixel strip at the top (transparent) and the rest (opaque). If it is compositing the entire view every frame, that change might be enough to let it know it only has to composite only the 30 pixels at the top.</p> http://stackoverflow.com/questions/593241/have-you-ever-used-nszonemalloc-instead-of-malloc 2 Have you ever used NSZoneMalloc() instead of malloc()? benzado 2009-02-27T01:49:20Z 2009-02-27T07:54:08Z <p>Cocoa provides for page-aligned memory areas that it calls <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmZones.html" rel="nofollow">Memory Zones</a>, and provides a few memory management functions that take a zone as an argument.</p> <p>Let's assume you need to allocate a block of memory (not for an object, but for arbitrary data). If you call <code>malloc(size)</code>, the buffer will always be allocated in the default zone. However, somebody may have used <code>allocWithZone:</code> to allocate your object in another zone besides the default. In that case, it would seem better to use <code>NSZoneMalloc([self zone], size)</code>, which keeps your buffer and owning object in the same area of memory.</p> <p>Do you follow this practice? Have you ever made use of memory zones?</p> <p>Update: I think there is a tendency on Stack Overflow to respond to questions about low-level topics with a lecture about premature optimization. I understand that zones probably mattered more in 1993 on NeXT hardware than they do today, and a Google search makes it pretty clear that virtually nobody is concerned with them. I am asking anyway, to see if somebody could describe a project where they made use of memory zones.</p> http://stackoverflow.com/questions/586835/feedback-framework-for-cocoa/593701#593701 0 Answer by benzado for Feedback Framework for Cocoa benzado 2009-02-27T06:14:56Z 2009-02-27T06:14:56Z <p>I've never used it, but apparently the author of <a href="http://vafer.org/projects/feedbackreporter/" rel="nofollow">Feedback Reporter</a> monitors Stack Overflow and will try to help if you bother explain your problem.</p> http://stackoverflow.com/questions/583391/drawrect-question/593684#593684 1 Answer by benzado for drawRect question benzado 2009-02-27T06:10:08Z 2009-02-27T06:10:08Z <p>To simplify what Barry said: Yes, the framework will handle it for you.</p> <p>You can safely ignore the rect, anything you draw outside of it will be ignored.</p> <p>On the other hand, if you draw outside of the rect you are wasting CPU time, so if you can limit your drawing based on the rect, you should.</p> http://stackoverflow.com/questions/1771579/replacement-for-use-of-nil-in-dictionaries-in-objective-c/1771634#1771634 Comment by benzado on Replacement for use of nil in dictionaries in objective-C benzado 2009-12-03T09:07:41Z 2009-12-03T09:07:41Z No, don't save an empty string into the dictionary. Don't save any value at all. To save: <code>if (tailColor != nil) [dict setObject:tailColor forKey:@&quot;TailColor&quot;];</code> To load: <code>tailColor = [dict objectForKey:@&quot;TailColor&quot;];</code> It's simple. http://stackoverflow.com/questions/1830014/swapping-a-uiview-instance-variable-cannot-dealloc-previous-view/1830069#1830069 Comment by benzado on "Swapping" a UIView Instance variable - cannot dealloc "previous" view benzado 2009-12-03T08:20:18Z 2009-12-03T08:20:18Z A view retains its subviews, so <code>addSubview:</code> is an implicit <code>retain</code> and <code>removeFromSuperview</code> is an implicit <code>release</code>. However, since your controller takes responsibility for retaining and releasing currentLevel, you don't have to care if anybody else does. The documentation is just noting that it is a common mistake to call <code>removeFromSuperview</code> without retaining the view first, in that case it will be immediately deallocated. http://stackoverflow.com/questions/1829922/concatenating-variable-names-in-c Comment by benzado on Concatenating Variable Names in C? benzado 2009-12-02T01:20:47Z 2009-12-02T01:20:47Z It (the preprocessor) also wouldn't work. http://stackoverflow.com/questions/1829922/concatenating-variable-names-in-c/1829944#1829944 Comment by benzado on Concatenating Variable Names in C? benzado 2009-12-02T01:20:06Z 2009-12-02T01:20:06Z Preprocessor concatenation won't work, because if you concatenate <code>class</code> with the loop variable <code>i</code> you'll produce <code>classi</code> and the compiler will complain that no such symbol exists. http://stackoverflow.com/questions/1184014/removing-text-shadow-in-uitableviewcell-when-its-selected/1213699#1213699 Comment by benzado on Removing text shadow in UITableViewCell when it's selected benzado 2009-12-01T20:24:50Z 2009-12-01T20:24:50Z I can confirm that you need to override both. The cell is Highlighted when you touch it, then Selected when you lift your finger up. If you only override setHighlighted:, the shadow will reappear when the touch ends. Even if you transition to another view after selection, it's noticeable. http://stackoverflow.com/questions/692464/emailing-full-screen-of-iphone-app/692927#692927 Comment by benzado on Emailing full screen of iPhone app benzado 2009-11-15T17:28:19Z 2009-11-15T17:28:19Z I bet if you looped through UIApplication's windows array and rendered them all (instead of only the keyWindow), the status bar would be drawn. http://stackoverflow.com/questions/367518/uiviewcontroller-not-loading-my-custom-uiview/367668#367668 Comment by benzado on UIViewController not loading my custom UIView benzado 2009-06-20T17:53:03Z 2009-06-20T17:53:03Z Selector name wrong. Last paragraph should read, &quot;Instead, you should override viewDidLoad, ...&quot; http://stackoverflow.com/questions/671382/transferring-ownership-of-an-iphone-app-on-the-app-store/675783#675783 Comment by benzado on Transferring ownership of an iPhone app on the app store benzado 2009-03-26T01:02:04Z 2009-03-26T01:02:04Z Sorry, on second read I see you are saying to simply re-upload the app into another account. http://stackoverflow.com/questions/671382/transferring-ownership-of-an-iphone-app-on-the-app-store/675783#675783 Comment by benzado on Transferring ownership of an iPhone app on the app store benzado 2009-03-26T01:00:58Z 2009-03-26T01:00:58Z Apps are identified by bundle identifier, not by certificate. If you were correct, my own app wouldn't have been upgraded since I had to recreate a cert between releases. http://stackoverflow.com/questions/671382/transferring-ownership-of-an-iphone-app-on-the-app-store/671601#671601 Comment by benzado on Transferring ownership of an iPhone app on the app store benzado 2009-03-26T01:00:27Z 2009-03-26T01:00:27Z Apps are identified by bundle identifier, not by certificate. If you were correct, my own app wouldn't have been upgraded since I had to recreate a cert between releases. http://stackoverflow.com/questions/642188/iphone-app-rejected-upon-section-3-3-3-but-what-does-it-mean/642196#642196 Comment by benzado on iPhone app rejected upon section 3.3.3 (but what does it mean?) benzado 2009-03-26T00:56:20Z 2009-03-26T00:56:20Z Podcaster was eventually accepted as &quot;RSS Player&quot;; I agree with John, 3.3.3 has nothing to do with downloading content. http://stackoverflow.com/questions/678980/boolean-logic-failure/679081#679081 Comment by benzado on Boolean logic failure benzado 2009-03-24T22:13:54Z 2009-03-24T22:13:54Z Somebody who is crazy about type safety would argue that is just a happy accident, and it's entirely possible for nil == NO &amp;&amp; non-nil == YES to break on some other architecture. But I'm not crazy. :-) http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/678758#678758 Comment by benzado on How do you read a file line by line in your language of choice? benzado 2009-03-24T22:08:30Z 2009-03-24T22:08:30Z You forgot to print the tabs! Also, shouldn't you use some LinePrinterVisitor design pattern? :-) http://stackoverflow.com/questions/610777/appstore-what-happens-if-your-app-gets-approved/610797#610797 Comment by benzado on AppStore, what happens if your app gets approved? benzado 2009-03-13T01:01:06Z 2009-03-13T01:01:06Z -1 for posting a wild-ass guess only four minutes after the question was asked http://stackoverflow.com/questions/640717/changing-color-of-all-interface-elements-of-the-same-type/640859#640859 Comment by benzado on Changing color of all interface elements of the same type benzado 2009-03-13T00:41:52Z 2009-03-13T00:41:52Z I think those tests should be <code>[subview isKindOfClass:[UIButton class]]</code>