User Dave Verwer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:08:20Z http://stackoverflow.com/feeds/user/4496 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181780/is-there-a-documented-way-to-set-the-iphone-orientation 4 Is there a documented way to set the iPhone orientation? Dave Verwer 2008-10-08T08:06:48Z 2009-12-05T00:03:27Z <p>I have an app where I would like to support device rotation in certain views but other don't particularly make sense in Landscape mode, so as I swapping the views out I would like to force the rotation to be set to portrait.</p> <p>There is an undocumented property setter on UIDevice that does the trick but obviously generates a compiler warning and could disappear with a future revision of the SDK.</p> <pre><code>[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait]; </code></pre> <p>Are there any documented ways to force the orientation?</p> <p><strong>Update:</strong> I thought I would provide an example as I am not looking for shouldAutorotateToInterfaceOrientation as I have already implemented that.</p> <p>I want my app to support landscape and portrait in View 1 but only portrait in View 2. I have already implemented shouldAutorotateToInterfaceOrientation for all views but if the user is in landscape mode in View 1 and then switches to View 2, I want to force the phone to rotate back to Portrait.</p> http://stackoverflow.com/questions/1105430/is-there-a-way-to-draw-colored-text-using-the-uikit-addition-for-nsstring-on-the/1444945#1444945 1 Answer by Dave Verwer for Is there a way to draw colored text using the UIKit addition for NSString on the iPhone? Dave Verwer 2009-09-18T14:32:54Z 2009-09-18T14:32:54Z <p>Brad's solution adds quite a bit of code if you do not have a context handy (for example if you are doing this in a drawRect: method).</p> <p>The way to do it without CG is</p> <pre><code>[[UIColor redColor] set]; </code></pre> <p>or whatever colour you want.</p> http://stackoverflow.com/questions/262508/catransition-showing-a-single-frame-from-the-end-of-the-transition-before-the-ani 1 CATransition showing a single frame from the end of the transition before the animation starts Dave Verwer 2008-11-04T17:01:22Z 2009-09-11T11:53:02Z <p>I am using some code which was originally taken from the Apple sample ViewTransitions to swap two views with each other.</p> <pre><code>CATransition *animation = [CATransition animation]; [animation setDelegate:self]; [animation setType:kCATransitionFade]; [animation setDuration:0.3f]; [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]]; [[container layer] addAnimation:animation forKey:@"swap"]; </code></pre> <p>When my transition executes on the devlice, I sometimes get a single frame flash of the final frame of the transition animation and then the animation plays smoothly. This gives a very jarring effect of the 2nd view which flickers in and then out again before the smooth animation executes.</p> <p>The main difference between my example and the Apple example is that my views are not full screen, I have a container UIView which contains both sub-views and I am applying my animation to the container layer instead the root view layer. I can not see that this should make much difference though.</p> <p>This issue does not happen at all in the simulator and is intermittent (about 60-70% of the time) on the device. Is anyone else seeing this behaviour and if so, how did you work around it?</p> <p><strong>Updated with more information:</strong> The code was originally part of a multi part animation but I moved it to be triggered by a button to isolate the problem. The issue occurs in both situations.</p> <p>The animation delegates were implemented but have been removed to try and isolate the problem.</p> <p>The views are not changing during the animation and in fact <code>[container setUserInteractionEnabled:NO]</code> is being called (but the problem also happens without user interaction being disabled).</p> <p>I have tried starting the animation from the middle of the transition and ending before the end using <code>setStartProgress</code> and <code>setEndProgress</code>, again the problem persists.</p> <p>I have tried slowing the animation duration right down as well with no effect.</p> http://stackoverflow.com/questions/43315/can-i-write-native-iphone-apps-using-python/43331#43331 9 Answer by Dave Verwer for Can I write native iPhone apps using Python Dave Verwer 2008-09-04T08:21:31Z 2009-08-09T13:47:07Z <p>Not currently, currently the only languages available to access the iPhone SDK are C/C++ and Objective C.</p> <p>There is no technical reason why this could not change in the future but I wouldn't hold your breath for this happening in the short term.</p> <p>That said, Objective C really isn't that scary...</p> http://stackoverflow.com/questions/1248520/gcc-4-2-failed-with-exit-code-1-iphone/1248604#1248604 0 Answer by Dave Verwer for gcc-4.2 failed with exit code 1 iphone Dave Verwer 2009-08-08T11:22:53Z 2009-08-08T11:22:53Z <p>You can see the error message output from GCC by selecting "Build Results" from the "Build" menu or by pressing ⇧⌘B.</p> http://stackoverflow.com/questions/1225216/problem-provisioning-iphone-after-3-0-1-update/1226382#1226382 5 Answer by Dave Verwer for Problem provisioning iPhone after 3.0.1 update Dave Verwer 2009-08-04T08:53:00Z 2009-08-04T08:53:00Z <p>Make sure that you don't paste it into Terminal as you currently have it (and as Apple have it in their PDF). It should be one line, not two.</p> <pre><code>ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1 </code></pre> <p>not</p> <pre><code>ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) / Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1 </code></pre> http://stackoverflow.com/questions/196795/is-there-a-way-to-control-the-animation-on-a-uitableview-scrolltorowatindexpath 4 Is there a way to control the animation on a UITableView scrollToRowAtIndexPath? Dave Verwer 2008-10-13T05:42:57Z 2009-03-19T04:01:18Z <p>I would like to modify the animation duration and attach a callback to be called when the animation finishes when calling scrollToRowAtIndexPath with animated:YES but I can't find a handle to its animation proxy or any other way to do it.</p> <p>Anyone know if this is possible?</p> http://stackoverflow.com/questions/383306/how-to-cancel-scrolling-in-uiscrollview/465061#465061 0 Answer by Dave Verwer for How to cancel scrolling in UIScrollView Dave Verwer 2009-01-21T12:22:02Z 2009-01-21T12:22:02Z <p>The simplest way to do this is set <code>delayContentTouches</code> to <code>NO</code> for the scrollview. That way the default behaviour is set so that anything which is a UIControl will pass the touches on to the control immediately andeverything else will scroll.</p> http://stackoverflow.com/questions/254080/converting-audio-to-caf-format-for-playback-on-iphone-using-openal 6 Converting audio to CAF format for playback on iPhone using OpenAL Dave Verwer 2008-10-31T16:19:13Z 2008-11-24T03:49:18Z <p>I am using the SoundEngine sample code from Apple in the CrashLanding sample to play back multiple audio files. Using the sample caf files included with CrashLanding everything works fine but when I try and use my own samplesconverted to CAF using afconvert all I get is a stony silence ;)</p> <p>Does anyone have settings for afconvert that will produce a CAF file capable of being played back through OpenAL?</p> http://stackoverflow.com/questions/53705/creating-mp4-m4a-files-with-chapter-marks 2 Creating MP4/M4A files with Chapter marks Dave Verwer 2008-09-10T09:39:22Z 2008-11-10T15:05:47Z <p>I am trying to join together several audio files into one mp4/m4a file containing chapter metadata.</p> <p>I am currently using QTKit to do this but unfortunately when QTKit exports to m4a format the metadata is all stripped out (this has been confirmed as a bug by Apple) see <a href="http://files.shinydevelopment.com/audiojoiner.zip" rel="nofollow">sample code</a>. I think this rules QTKit out for this job, but would be happy to be proven wrong as it is a really neat API for it if it worked.</p> <p>So, I am looking for a way to concatenate audio files (input format does not really matter as I can do conversion) into an m4a file with chapters metadata.</p> <p>As an alternative to code, I am open to the idea of using an existing command line tool to accomplish this as long as it is redistributable as part of another application.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/149646/best-way-to-make-nsrunloop-wait-for-a-flag-to-be-set 1 Best way to make NSRunLoop wait for a flag to be set? Dave Verwer 2008-09-29T17:00:58Z 2008-11-09T21:51:18Z <p>In the Apple documentation for <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSRunLoop_Class/Reference/Reference.html#//apple_ref/occ/instm/NSRunLoop/run" rel="nofollow">NSRunLoop</a> there is sample code demonstrating suspending execution while waiting for a flag to be set by something else.</p> <pre><code>BOOL shouldKeepRunning = YES; // global NSRunLoop *theRL = [NSRunLoop currentRunLoop]; while (shouldKeepRunning &amp;&amp; [theRL runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]); </code></pre> <p>I have been using this and it works but in investigating a performance issue I tracked it down to this piece of code. I use almost exactly the same piece of code (just the name of the flag is different :) and if I put a <code>NSLog</code> on the line after the flag is being set (in another method) and then a line after the <code>while()</code> there is a seemingly random wait between the two log statements of several seconds.</p> <p>The delay does not seem to be different on slower or faster machines but does vary from run to run being at least a couple of seconds and up to 10 seconds.</p> <p>I have worked around this issue with the following code but it does not seem right that the original code doesn't work.</p> <pre><code>NSDate *loopUntil = [NSDate dateWithTimeIntervalSinceNow:0.1]; while (webViewIsLoading &amp;&amp; [[NSRunLoop currentRunLoop] runMode: NSDefaultRunLoopMode beforeDate:loopUntil]) loopUntil = [NSDate dateWithTimeIntervalSinceNow:0.1]; </code></pre> <p>using this code, the log statements when setting the flag and after the while loop are now consistently less than 0.1 seconds apart.</p> <p>Anyone any ideas why the original code exhibits this behaviour?</p> http://stackoverflow.com/questions/262508/catransition-showing-a-single-frame-from-the-end-of-the-transition-before-the-ani/268456#268456 0 Answer by Dave Verwer for CATransition showing a single frame from the end of the transition before the animation starts Dave Verwer 2008-11-06T12:13:30Z 2008-11-06T12:13:30Z <p>Solved, I had missed a key piece of this that I thought was irrelevant ;) After setting up the animation in the code sample above, I was swapping the views out in the same method.</p> <p>Moving it to the animationDidStart delegate fixed the issue.</p> http://stackoverflow.com/questions/248985/nsoperationqueue-operations-returns-an-empty-array-when-it-shouldnt/255661#255661 0 Answer by Dave Verwer for -[NSOperationQueue operations] returns an empty array when it shouldn't? Dave Verwer 2008-11-01T08:42:38Z 2008-11-01T08:42:38Z <p>No idea why you are seeing this behaviour but as a pure workaround you could keep your own references to the individual operations as they are added into the queue.</p> http://stackoverflow.com/questions/254080/converting-audio-to-caf-format-for-playback-on-iphone-using-openal/255151#255151 10 Answer by Dave Verwer for Converting audio to CAF format for playback on iPhone using OpenAL Dave Verwer 2008-10-31T22:34:41Z 2008-10-31T22:34:41Z <p>Answering my own question...</p> <pre><code>afconvert -f caff -d LEI16@44100 -c 1 in.wav out.caf </code></pre> http://stackoverflow.com/questions/229594/how-many-international-languages-does-the-iphone-simulator-support/230220#230220 0 Answer by Dave Verwer for How many international languages does the iPhone Simulator support? Dave Verwer 2008-10-23T15:36:53Z 2008-10-23T15:36:53Z <p>Mine is also 18 and in response to your request for a screenshot here it is: <img src="http://img.skitch.com/20081023-1kw7jjymr9sr9dc59eyfqunr5x.jpg" alt="iPhone Simulator Languages" /></p> <p>Have you tried resetting the content and settings in the Simulator menu?</p> http://stackoverflow.com/questions/197383/locating-bundles-by-identifier/198195#198195 1 Answer by Dave Verwer for Locating bundles by identifier Dave Verwer 2008-10-13T16:35:28Z 2008-10-13T16:35:28Z <p>Use this</p> <pre><code>NSString *path = [[NSWorkspace sharedWorkspace] absolutePathForAppBundleWithIdentifier:@"com.apple.TextEdit"]; </code></pre> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184670#184670 139 Answer by Dave Verwer for What is the best comment in source code you have ever encountered? Dave Verwer 2008-10-08T20:16:52Z 2008-10-08T20:16:52Z <p>Many years ago (about 1994) I was working on a Oracle PRO*C application for a large multi-national software company that you will have heard of. The app I was working on was a massive Oracle application and they had a utility that ran overnight tidying up data and doing all sorts of aggregate calculations. Every time anything needed doing as a batch job, it got shoved into this utility and as you can imagine it became an absolute monstrosity. It was also notable for the tiny number of comments that it had for such a massive program.</p> <p>One of the few comments it did have remains the finest comment I have ever seen for pure WTF'ness... I was trying to find a bug in a function which was hundreds of lines long and right in the middle of it was the <strong>only</strong> comment in the function:</p> <pre><code>/* I did this the other way */ </code></pre> <p>To this day it is still the finest comment I have ever seen.</p> http://stackoverflow.com/questions/149827/preferred-path-to-applications-on-osx/151007#151007 2 Answer by Dave Verwer for Preferred path to applications on OSX? Dave Verwer 2008-09-29T22:31:37Z 2008-09-29T22:31:37Z <p>In your second edit it makes it sound like you just want to get the path to TextEdit, this can be done easily by using NSWorkspace method absolutePathForAppBundleWithIdentifier:</p> <pre><code>NSString *path = [[NSWorkspace sharedWorkspace] absolutePathForAppBundleWithIdentifier:@"com.apple.TextEdit"]; </code></pre> http://stackoverflow.com/questions/53717/managing-customer-expectations-at-prototype-stage/53720#53720 6 Answer by Dave Verwer for Managing customer expectations at prototype stage Dave Verwer 2008-09-10T09:52:34Z 2008-09-29T21:48:13Z <p>I have found that using hand drawn screen mockups rather than mockups designed on the computer is really helpful. They are quicker to produce for you, can contain just as much information and certainly do not give the impression that the application is close to being ready :)</p> <p>If you have to use a tool, something like <a href="http://www.balsamiq.com/products/mockups" rel="nofollow">http://www.balsamiq.com/products/mockups</a> might do it for you.</p> http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone/150721#150721 6 Answer by Dave Verwer for How do I detect when someone shakes an iPhone? Dave Verwer 2008-09-29T21:17:44Z 2008-09-29T21:17:44Z <p>You need to check the accelerometer via accelerometer:didAccelerate: method which is part of the UIAccelerometerDelegate protocol and check whether the values go over a threshold for the amount of movement needed for a shake.</p> <p>There is decent sample code in the accelerometer:didAccelerate: method right at the bottom of AppController.m in the GLPaint example which is available on the iPhone developer site.</p> http://stackoverflow.com/questions/149796/is-there-a-disadvantage-to-blindly-using-insert-in-mysql/149819#149819 4 Answer by Dave Verwer for Is there a disadvantage to blindly using INSERT in MySQL? Dave Verwer 2008-09-29T17:41:34Z 2008-09-29T17:41:34Z <p>Personally I am never a fan of exception based programming (expecting an exception in the normal operation of an application) and to me the second example is much more readable/maintainable.</p> <p>There are situations where this would make a difference (very tight loops for example) but I think there should be a good reason to write code like this rather than it being the default.</p> http://stackoverflow.com/questions/86234/diagram-tool-for-mac-os-x/87115#87115 0 Answer by Dave Verwer for Diagram tool for Mac OS X Dave Verwer 2008-09-17T20:11:53Z 2008-09-17T20:11:53Z <p>Pencil, paper and scanner?</p> http://stackoverflow.com/questions/899/best-subversion-client-for-mac-os/81511#81511 0 Answer by Dave Verwer for Best subversion client for Mac OS Dave Verwer 2008-09-17T09:38:14Z 2008-09-17T09:38:14Z <p>Command line all the way for me, everything else just feels wrong.</p> http://stackoverflow.com/questions/54974/keyboard-shortcut-for-restoring-applications-from-the-mac-osx-dock/55011#55011 0 Answer by Dave Verwer for Keyboard shortcut for restoring applications from the Mac OSX Dock? Dave Verwer 2008-09-10T18:51:03Z 2008-09-10T18:51:03Z <p>Depending on how your keyboard is set in system preferences, the shortcut to focus the dock may be Ctrl+Fn+F3.</p> http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/54772#54772 15 Answer by Dave Verwer for What are the best movies about Geeks/Programmers/Hackers. (for inspiration) Dave Verwer 2008-09-10T17:25:57Z 2008-09-10T17:25:57Z <p>Code Rush is a really interesting documentary film about the open sourcing of Netscape. It can be watched or downloaded here:</p> <p><a href="http://waxy.org/2008/06/code_rush" rel="nofollow">http://waxy.org/2008/06/code_rush</a></p> http://stackoverflow.com/questions/54421/what-is-the-design-pattern-for-processing-command-line-arguments/54479#54479 0 Answer by Dave Verwer for What is the design pattern for processing command line arguments Dave Verwer 2008-09-10T15:47:21Z 2008-09-10T15:47:21Z <p>You don't mention a language for this but if you are looking for a really nice Objective-C wrapper around getopt then Dave Dribin's DDCLI framework is really nice.</p> <p><a href="http://www.dribin.org/dave/blog/archives/2008/04/29/ddcli" rel="nofollow">http://www.dribin.org/dave/blog/archives/2008/04/29/ddcli</a></p> http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/50523#50523 20 Answer by Dave Verwer for Recommended Fonts for Programming? Dave Verwer 2008-09-08T19:56:47Z 2008-09-08T19:56:47Z <p>+1 for Monaco</p> <p><img src="http://img.skitch.com/20080908-nmjji28uerreqpprs1h86gxna9.png" alt="alt text" /></p> <p>Just beautiful and I find I can read it for hours on end.</p> http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects/50283#50283 4 Answer by Dave Verwer for Git ignore file for Xcode projects Dave Verwer 2008-09-08T17:51:38Z 2008-09-08T17:51:38Z <p>Mine is a .bzrignore, but same idea :)</p> <pre><code>.DS_Store *.mode1v3 *.pbxuser *.perspectivev3 *.tm_build_errors </code></pre> <p>the tm_build_errors is for when I use TextMate to build my project. Not quite as comprehensive as Hagelin but I thought it was worth posting for the tm_build_errors line.</p> http://stackoverflow.com/questions/45252/load-balancing-of-process-in-1-server/48219#48219 0 Answer by Dave Verwer for Load Balancing of Process in 1 Server Dave Verwer 2008-09-07T07:20:34Z 2008-09-07T07:20:34Z <p>nginx is great but if you don't fancy a whole new web server, apache 2.2 with mod proxy balancer will do the same job</p> http://stackoverflow.com/questions/47210/is-there-a-good-fogbugz-client-for-mac-os-x/47302#47302 0 Answer by Dave Verwer for Is there a good Fogbugz client for Mac OS X? Dave Verwer 2008-09-06T07:11:52Z 2008-09-06T07:11:52Z <p>I don't know of any native tool, but like Matt I am pretty happy with the web interface.</p> http://stackoverflow.com/questions/1225216/problem-provisioning-iphone-after-3-0-1-update/1225384#1225384 Comment by Dave Verwer on Problem provisioning iPhone after 3.0.1 update Dave Verwer 2009-08-04T09:00:02Z 2009-08-04T09:00:02Z While this will work, it would be better to do it with the symlink. See my answer below for the reason the original terminal command did not work http://stackoverflow.com/questions/254080/converting-audio-to-caf-format-for-playback-on-iphone-using-openal/255151#255151 Comment by Dave Verwer on Converting audio to CAF format for playback on iPhone using OpenAL Dave Verwer 2008-11-01T08:11:11Z 2008-11-01T08:11:11Z I also asked the question on the official iPhone SDK forums http://stackoverflow.com/questions/196795/is-there-a-way-to-control-the-animation-on-a-uitableview-scrolltorowatindexpath/197861#197861 Comment by Dave Verwer on Is there a way to control the animation on a UITableView scrollToRowAtIndexPath? Dave Verwer 2008-10-13T15:13:34Z 2008-10-13T15:13:34Z Fantastic, any idea how to change the duration? http://stackoverflow.com/questions/190662/whats-the-cheapest-mac-development-box-possible/190668#190668 Comment by Dave Verwer on What's the cheapest mac development box possible? Dave Verwer 2008-10-10T21:12:38Z 2008-10-10T21:12:38Z Mac Mini is fine but do yourself a favour and buy 2Gb of RAM http://stackoverflow.com/questions/183112/how-do-i-play-background-music-in-my-iphone-game/183625#183625 Comment by Dave Verwer on How do I play background music in my iPhone game? Dave Verwer 2008-10-08T21:09:15Z 2008-10-08T21:09:15Z I can confirm it works great http://stackoverflow.com/questions/181780/is-there-a-documented-way-to-set-the-iphone-orientation/184631#184631 Comment by Dave Verwer on Is there a documented way to set the iPhone orientation? Dave Verwer 2008-10-08T20:22:18Z 2008-10-08T20:22:18Z It is possible with the code I originally posted, you just never know when that might stop working ;) http://stackoverflow.com/questions/181780/is-there-a-documented-way-to-set-the-iphone-orientation/183348#183348 Comment by Dave Verwer on Is there a documented way to set the iPhone orientation? Dave Verwer 2008-10-08T18:09:46Z 2008-10-08T18:09:46Z That stops rotation, what I am looking for is to force a rotation back to portrait if the user is in landscape. I have added an example above to say what I mean better. http://stackoverflow.com/questions/113437/iphone-application-is-it-possible-to-use-a-double-slider-to-select-a-price-ra Comment by Dave Verwer on iPhone application : is-it possible to use a "double" slider to select a price range Dave Verwer 2008-10-08T08:20:19Z 2008-10-08T08:20:19Z I can completely see the logic here, it becomes obvious to the user that the values can not overlap etc but as the other answers say this would be a significant amount of work. http://stackoverflow.com/questions/181780/is-there-a-documented-way-to-set-the-iphone-orientation Comment by Dave Verwer on Is there a documented way to set the iPhone orientation? Dave Verwer 2008-10-08T08:10:28Z 2008-10-08T08:10:28Z haha, very nice... http://stackoverflow.com/questions/53705/creating-mp4-m4a-files-with-chapter-marks/69607#69607 Comment by Dave Verwer on Creating MP4/M4A files with Chapter marks Dave Verwer 2008-10-07T05:12:59Z 2008-10-07T05:12:59Z No word on when the bug will be fixed but please log it in Radar as that will bump it up the priority list. http://stackoverflow.com/questions/149646/best-way-to-make-nsrunloop-wait-for-a-flag-to-be-set/151500#151500 Comment by Dave Verwer on Best way to make NSRunLoop wait for a flag to be set? Dave Verwer 2008-10-07T05:11:05Z 2008-10-07T05:11:05Z Thanks Chris, unfortunately this won't work as the flag is being set in a delegate method on WebView so I can not just call it immediately. http://stackoverflow.com/questions/149646/best-way-to-make-nsrunloop-wait-for-a-flag-to-be-set/173948#173948 Comment by Dave Verwer on Best way to make NSRunLoop wait for a flag to be set? Dave Verwer 2008-10-07T05:10:21Z 2008-10-07T05:10:21Z This is a great explanation of why the RunLoop was not breaking out, Thanks. There is a good reason why the WebView loading needs to be modal though and I need to keep it like this. http://stackoverflow.com/questions/151024/how-can-i-upgrade-the-console-version-of-vim-on-os-x/151169#151169 Comment by Dave Verwer on How can I upgrade the *console* version of vim on OS X? Dave Verwer 2008-10-01T07:37:43Z 2008-10-01T07:37:43Z it will be /opt/local/bin if you use a default installation of MacPorts http://stackoverflow.com/questions/144873/can-i-browse-other-peoples-apple-bug-reports/145223#145223 Comment by Dave Verwer on Can I browse other people's (Apple) bug reports? Dave Verwer 2008-09-28T09:43:13Z 2008-09-28T09:43:13Z According to Apple support, adding duplicate bugs does indeed increase their priority internally. http://stackoverflow.com/questions/125619/prevent-iphone-from-dimming-screen-power-saving/125623#125623 Comment by Dave Verwer on prevent iPhone from dimming screen (power saving) Dave Verwer 2008-09-24T07:21:50Z 2008-09-24T07:21:50Z <a href="http://stackoverflow.com/questions/23482/the-iphone-sdk-nda-and-stack-overflow" rel="nofollow" title="the iphone sdk nda and stack overflow">stackoverflow.com/questions/23482/&hellip;</a>