Posted by: bcaccinolo on: December 28, 2010
Ok if you have juste one git repository, git instaweb is for you. This command automatically generate the config to connect with a webserver installed on your server. I recommand you to try, it’s impressive as it’s simple. For me the best config is : git instaweb -d webrick Now if you have several git [...]
Posted by: bcaccinolo on: December 28, 2010
On an UIView containing an UITextField, if you want the keyboard to appear when the view is displayed, you have to send the message becomeFirstResponder to the UITextField of the View like this: – (void)viewWillAppear:(BOOL)animated { [myTextField becomeFirstResponder]; }