User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:33:32Z http://stackoverflow.com/feeds/user/22764 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1709467/why-does-the-flash-player-throw-a-sandbox-error-in-this-case/1804665#1804665 0 Answer by vlado.grigorov for Why does the Flash Player throw a sandbox error in this case? vlado.grigorov 2009-11-26T16:34:57Z 2009-11-26T16:34:57Z <p>When sending the policy file, the server should always send a zero byte after policy xml. It is not clear from the description above whether the zero byte is sent, and this may confuse the Flash player eventually.</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/158506#158506 12 Answer by vlado.grigorov for What are those little Xcode tips & tricks you wish you knew about 2 years ago? vlado.grigorov 2008-10-01T16:30:27Z 2009-11-01T01:35:20Z <p>Navigate among open files back and forth:<br /> ⌥⌘&larr;<br /> ⌥⌘&rarr;</p> http://stackoverflow.com/questions/1301606/how-can-i-practice-better-object-oriented-programming/1306809#1306809 1 Answer by vlado.grigorov for How can I practice better object-oriented programming? vlado.grigorov 2009-08-20T15:05:42Z 2009-08-20T15:05:42Z <p>I also think OOP skills strenghten mostly with practice. Consider changing your company, if you've been there for more than 3 years. Certainly, this is not valid for all jobs, but often a man gets used to the projects and practices at a company and stops advancing as time passes.</p> http://stackoverflow.com/questions/378746/how-to-jump-to-certain-time-with-the-mpmovieplayer-of-iphonesdk/892043#892043 1 Answer by vlado.grigorov for How to jump to certain time with the MPMoviePlayer of iPhoneSDK? vlado.grigorov 2009-05-21T09:18:37Z 2009-05-21T09:18:37Z <p>There is a similar question answered aready <a href="http://stackoverflow.com/questions/96156/chapters-in-videos-for-the-iphone">here</a>.</p> http://stackoverflow.com/questions/96156/chapters-in-videos-for-the-iphone/891987#891987 0 Answer by vlado.grigorov for chapters in videos for the iPhone vlado.grigorov 2009-05-21T09:01:08Z 2009-05-21T09:01:08Z <p>This is definitely possible sending the non-documented message <strong>setCurrentTime</strong> to MPMoviePlayerController. It takes one parameter of type double which specifies the playback position in seconds. Find below a short example: </p> <p>Extend the MPMoviePlayerController to avoid compiler warnings: </p> <pre><code>@interface MPMoviePlayerController (extended) -(void)setCurrentTime:(double)seconds; @end </code></pre> <p>Then you can call it wherever you need it - before start or during playback.</p> <pre><code>MPMoviePlayerController* player = [[ MPMoviePlayerController alloc] initWithContentURL:url ]; [ player setCurrentTime:95.0 ]; [ player play ]; </code></pre> http://stackoverflow.com/questions/783263/code-sign-error-after-renewing-my-certificate/835552#835552 0 Answer by vlado.grigorov for Code Sign error after renewing my certificate vlado.grigorov 2009-05-07T16:01:26Z 2009-05-07T16:01:26Z <p>I just would like to add that you'll receive this error when your certificate is expired or when it is somehow removed from your keychain. To fix it, login to iPhone developer program portal and renew the certificate - the instructions there are pretty comprehensive.</p> http://stackoverflow.com/questions/800116/iphone-3g-connection-enabling/801932#801932 0 Answer by vlado.grigorov for iPhone 3G Connection Enabling vlado.grigorov 2009-04-29T11:31:16Z 2009-04-29T11:31:16Z <p>Are you sure you're establising the connection correctly? My application does the same using sockets and it has no problems to re-establish the connection after device sleep. Use Reachability API in SystemConfiguration framework to get notified when coverage is available and after that make your connection attempt. Note that a time period - from several seconds to couple of minutes - has to elapse after the device awakes to gain Internet connectivity, so be patient. </p> <p>There is Reachability sample from Apple, search also stackoverflow for reachability and you'll find more hints how to implement it.</p> http://stackoverflow.com/questions/773442/what-does-8badf00d-mean 2 What does 8badf00d mean? vlado.grigorov 2009-04-21T16:20:12Z 2009-04-22T22:08:49Z <p>Sometimes my iPhone application crashes with a weird crashlog, that reads exception code is 0x8badf00d. The stacktraces show random snapshots of app execution, but nothing suspicious. This happens very rarely and I'm not able to find out how to reproduce it. Does anybody know more about this kind of exception and exception code? </p> <p>Here is an excerpt from my crashlogs:</p> <blockquote> <p>Exception Type: 00000020<br /> Exception Codes: 0x8badf00d<br /> Highlighted Thread: 0 </p> <p>Application Specific Information:<br /> Failed to deactivate</p> <p>Thread 0:<br /> ...<br /> &lt; nothing suspicious here ><br /> ...</p> <p>Unknown thread crashed with unknown flavor: 5, state_count: 1</p> </blockquote> http://stackoverflow.com/questions/761140/wifi-connection-is-dropped-after-user-inactivity-period 1 WiFi connection is dropped after user inactivity period vlado.grigorov 2009-04-17T16:29:18Z 2009-04-17T16:55:11Z <p>My iPhone application establishes a TCP connection through wifi to a remote server. However, if there is no user activity for a certain time, the device closes wifi and drops the connection. Is it possible to prevent it? I need the connection to be persistent while the application is running. Setting <em>setIdleTimerDisabled:YES</em> doesn't help - it prevents the screen to go off, but still the wifi is closed. </p> <p>Do you know if this is possible and how to achieve it?</p> http://stackoverflow.com/questions/751627/iphone-play-video-not-in-full-screen-mode/755327#755327 0 Answer by vlado.grigorov for [iPhone] Play video not in full screen mode vlado.grigorov 2009-04-16T09:13:01Z 2009-04-16T09:13:01Z <p>Looking at the MPMoviePlayerController class dump <a href="http://ericasadun.com/iPhoneDocs220/interface%5Fm%5Fp%5Fmovie%5Fplayer%5Fcontroller.html" rel="nofollow">here</a>, you can see these public members:</p> <pre><code>-(BOOL) isFullscreen; -(void) setFullscreen:(BOOL)fp8; </code></pre> <p>So there is a tiny chance to show a movie in windowed mode. However, these members are not officialy available and may have unexpected behaviour. This is just a hint, I haven't done it myself. Beware that using undocumented APIs may make Apple reject your application from the AppStore.</p> http://stackoverflow.com/questions/618759/getting-cursor-position-in-a-uitextview-on-the-iphone/619306#619306 1 Answer by vlado.grigorov for Getting cursor position in a UITextView on the iPhone? vlado.grigorov 2009-03-06T15:46:29Z 2009-03-06T15:46:29Z <p>Use UITextView selectedRange property to find the insertion point when the text view is first responder. Otherwise, when the view is not in focus, this property returns NSNotFound. If you need to know the cursor position in that case, consider subclassing UITextView and overriding canResignFirstResponder method, where you can store cursor position to a member variable.</p> http://stackoverflow.com/questions/322923/best-way-to-re-use-a-uitableview-with-dynamic-data/323876#323876 0 Answer by vlado.grigorov for Best way to re-use a UITableView with dynamic data? vlado.grigorov 2008-11-27T14:16:50Z 2008-11-27T14:16:50Z <p>Since you retrieve the data through the network, I would suggest to post a notification after you process it. Your DocumentListController should register for that notification and invoke its table view's reloadData in the notification handler. </p> <p>Another approach, if the data will always be there when displaying the view, is what you've suggested - update table view in viewWillAppear.</p> http://stackoverflow.com/questions/281515/how-to-customize-the-background-color-of-a-uitableviewcell/290228#290228 12 Answer by vlado.grigorov for How to customize the background color of a UITableViewCell? vlado.grigorov 2008-11-14T14:31:09Z 2008-11-14T14:57:57Z <p>The best approach I've found so far is to set a background view of the cell and clear background of cell subviews. Of course, this looks nice on tables with indexed style only, no matter with or without accessories. </p> <p>Here is a sample where cell's background is panted yellow: </p> <pre><code>UIView* backgroundView = [ [ [ UIView alloc ] initWithFrame:CGRectZero ] autorelease ]; backgroundView.backgroundColor = [ UIColor yellowColor ]; cell.backgroundView = backgroundView; for ( UIView* view in cell.contentView.subviews ) { view.backgroundColor = [ UIColor clearColor ]; } </code></pre> http://stackoverflow.com/questions/148403/utf8-to-from-wide-char-conversion-in-stl 11 UTF8 to/from wide char conversion in STL vlado.grigorov 2008-09-29T12:03:23Z 2008-11-11T15:15:53Z <p>Is it possible to convert UTF8 string in a std::string to std::wstring and vice versa in a platform independent manner? In a Windows application I would use MultiByteToWideChar and WideCharToMultiByte. However, the code is compiled for multiple OSes and I'm limited to standard C++ library.</p> http://stackoverflow.com/questions/169470/does-the-iphone-timeout-if-a-function-takes-too-long-to-execute/174300#174300 1 Answer by vlado.grigorov for Does the iPhone timeout if a function takes too long to execute? vlado.grigorov 2008-10-06T13:31:36Z 2008-10-06T13:31:36Z <p>iPhone imposes a timeout for application launch. So if you perform an extensive processing in applicationDidFinishLaunching: for instance, the application will be terminated and a crash log will be produced. Unfortunately I've found no mention of it in the official documentation.</p> <p>After the launch process has completed, I'm not aware of any timeouts that limit function execution time. I've tried it on the device with putting sleep for 30 seconds in the main thread and it works fine.</p> http://stackoverflow.com/questions/427745/desktop-sharing-application-in-flex/1726683#1726683 Comment by on Desktop sharing application in Flex? 2009-11-23T14:28:10Z 2009-11-23T14:28:10Z No, they didn't. They require native application install for desktop sharing. http://stackoverflow.com/questions/458394/why-is-tortoisesvn-so-slow Comment by on Why is TortoiseSVN so slow? 2009-09-18T07:59:46Z 2009-09-18T07:59:46Z More answers here: <a href="http://stackoverflow.com/questions/949492/svn-tortoise-painfully-slow" rel="nofollow" title="svn tortoise painfully slow">stackoverflow.com/questions/949492/&hellip;</a> http://stackoverflow.com/questions/886893/store-an-encryption-key-in-keychain-while-application-installation-process Comment by on Store an encryption key in Keychain while application installation process 2009-05-20T11:03:05Z 2009-05-20T11:03:05Z Have you considered using the device ID instead of phone number? If all you need is unique ID, it will do the job. http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/779387#779387 Comment by on What does 8badf00d mean? 2009-04-23T08:17:03Z 2009-04-23T08:17:03Z Finally an answer to the question, thank you! I'll need to investigate more to confirm this is the actual reason for my crashlogs, but since you provide a link to an official source, I'll accept it. http://stackoverflow.com/questions/108183/how-to-prevent-sigpipes-or-handle-them-properly/450130#450130 Comment by on How to prevent SIGPIPEs (or handle them properly). 2009-02-06T16:39:37Z 2009-02-06T16:39:37Z Thank you very much for this solution! http://stackoverflow.com/questions/207414/iphone-crash-reporter/215491#215491 Comment by on iphone crash reporter 2008-11-19T16:09:09Z 2008-11-19T16:09:09Z Nice and simple! Thank you http://stackoverflow.com/questions/148403/utf8-to-from-wide-char-conversion-in-stl Comment by on UTF8 to/from wide char conversion in STL 2008-09-30T08:55:56Z 2008-09-30T08:55:56Z Thanks, 'standard C++ library' is more precise statement. http://stackoverflow.com/questions/148403/utf8-to-from-wide-char-conversion-in-stl/148766#148766 Comment by on UTF8 to/from wide char conversion in STL 2008-09-30T08:55:08Z 2008-09-30T08:55:08Z Thank you for the correction, I did intend to use UTF8. I edited the question to be more clear.