User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:33:32Zhttp://stackoverflow.com/feeds/user/22764http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1709467/why-does-the-flash-player-throw-a-sandbox-error-in-this-case/1804665#18046650Answer by vlado.grigorov for Why does the Flash Player throw a sandbox error in this case?vlado.grigorov2009-11-26T16:34:57Z2009-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#15850612Answer by vlado.grigorov for What are those little Xcode tips & tricks you wish you knew about 2 years ago?vlado.grigorov2008-10-01T16:30:27Z2009-11-01T01:35:20Z<p>Navigate among open files back and forth:<br />
⌥⌘←<br />
⌥⌘→</p>
http://stackoverflow.com/questions/1301606/how-can-i-practice-better-object-oriented-programming/1306809#13068091Answer by vlado.grigorov for How can I practice better object-oriented programming?vlado.grigorov2009-08-20T15:05:42Z2009-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#8920431Answer by vlado.grigorov for How to jump to certain time with the MPMoviePlayer of iPhoneSDK?vlado.grigorov2009-05-21T09:18:37Z2009-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#8919870Answer by vlado.grigorov for chapters in videos for the iPhonevlado.grigorov2009-05-21T09:01:08Z2009-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#8355520Answer by vlado.grigorov for Code Sign error after renewing my certificatevlado.grigorov2009-05-07T16:01:26Z2009-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#8019320Answer by vlado.grigorov for iPhone 3G Connection Enablingvlado.grigorov2009-04-29T11:31:16Z2009-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-mean2What does 8badf00d mean?vlado.grigorov2009-04-21T16:20:12Z2009-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 />
< 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-period1WiFi connection is dropped after user inactivity periodvlado.grigorov2009-04-17T16:29:18Z2009-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#7553270Answer by vlado.grigorov for [iPhone] Play video not in full screen modevlado.grigorov2009-04-16T09:13:01Z2009-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#6193061Answer by vlado.grigorov for Getting cursor position in a UITextView on the iPhone?vlado.grigorov2009-03-06T15:46:29Z2009-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#3238760Answer by vlado.grigorov for Best way to re-use a UITableView with dynamic data?vlado.grigorov2008-11-27T14:16:50Z2008-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#29022812Answer by vlado.grigorov for How to customize the background color of a UITableViewCell?vlado.grigorov2008-11-14T14:31:09Z2008-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-stl11UTF8 to/from wide char conversion in STLvlado.grigorov2008-09-29T12:03:23Z2008-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#1743001Answer by vlado.grigorov for Does the iPhone timeout if a function takes too long to execute?vlado.grigorov2008-10-06T13:31:36Z2008-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#1726683Comment by on Desktop sharing application in Flex?2009-11-23T14:28:10Z2009-11-23T14:28:10ZNo, they didn't. They require native application install for desktop sharing.http://stackoverflow.com/questions/458394/why-is-tortoisesvn-so-slowComment by on Why is TortoiseSVN so slow?2009-09-18T07:59:46Z2009-09-18T07:59:46ZMore answers here: <a href="http://stackoverflow.com/questions/949492/svn-tortoise-painfully-slow" rel="nofollow" title="svn tortoise painfully slow">stackoverflow.com/questions/949492/…</a>http://stackoverflow.com/questions/886893/store-an-encryption-key-in-keychain-while-application-installation-processComment by on Store an encryption key in Keychain while application installation process2009-05-20T11:03:05Z2009-05-20T11:03:05ZHave 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#779387Comment by on What does 8badf00d mean?2009-04-23T08:17:03Z2009-04-23T08:17:03ZFinally 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#450130Comment by on How to prevent SIGPIPEs (or handle them properly).2009-02-06T16:39:37Z2009-02-06T16:39:37ZThank you very much for this solution!http://stackoverflow.com/questions/207414/iphone-crash-reporter/215491#215491Comment by on iphone crash reporter2008-11-19T16:09:09Z2008-11-19T16:09:09ZNice and simple! Thank youhttp://stackoverflow.com/questions/148403/utf8-to-from-wide-char-conversion-in-stlComment by on UTF8 to/from wide char conversion in STL2008-09-30T08:55:56Z2008-09-30T08:55:56ZThanks, 'standard C++ library' is more precise statement.http://stackoverflow.com/questions/148403/utf8-to-from-wide-char-conversion-in-stl/148766#148766Comment by on UTF8 to/from wide char conversion in STL2008-09-30T08:55:08Z2008-09-30T08:55:08ZThank you for the correction, I did intend to use UTF8. I edited the question to be more clear.