Saturday, February 26, 2011

Hidden status bar in iphone programatically

Something easy this time. Only one line

[[UIApplication sharedApplication] setStatusBarHidden:YES];


Hope help

Thursday, February 24, 2011

Seting up free Borland C++ 5.5 compile

Hi, Today I need to use the Borland compiler and I've decided to set it up.

If you want to compile from your development directory the way is to create two new files:

bcc32.cfg

-I"C:\Borland\BCC55\Include"
-L"C:\Borland\BCC55\Lib"


ilink32.cfg

-L"C:\Borland\BCC55\Lib"


Now we can compile using:

bcc32 our_file.cpp


Of course, I'm using the default installation path and I set the local variables before.

Bye