Posts

Showing posts from April, 2011

Custom UI Control

http://cocoacontrols.com/

Arduino based remote controller

http://www.arcfn.com/2009/08/multi-protocol-infrared-remote-library.html

TV-B-Gone

http://www.adafruit.com/blog/2011/04/22/tv-b-gone-arduino-workshop-notes/ http://www.tvbgone.com/downloads/tvbg_arduino/tvbg_arduino_workshop.htm http://www.adafruit.com/index.php?main_page=product_info&cPath=19&products_id=72 http://www.arcfn.com/2009/12/tv-b-gone-for-arduino.html http://www.arcfn.com/2010/11/improved-arduino-tv-b-gone.html https://github.com/shirriff/Arduino-TV-B-Gone http://www.ladyada.net/make/tvbgone/download.html

Compile VLC for your iOS device

http://rick-hawkins.blogspot.com/2010/11/compiling-vlc-in-xcode-for-ipad.html

custom alerts

http://www.alexcurylo.com/blog/2010/07/16/custom-alerts/

viewDidDissapear

http://timneill.net/2010/11/modal-view-controller-example-part-2/ http://stackoverflow.com/questions/2679910/correct-way-of-showing-consecutive-modalviews

Custom UINavigationBar Back Button

Image
via:  http://www.applausible.com/blog/?p=401 A common thing in client apps i write is custom back images, mostly because the apps have a custom UINavigationBar image, so its good to have them themed together. You can see what this looks like for this tutorial: Ok so in your View Controller, thats shown after something in your navigation view is shown, add this code in the viewDidLoad method: 01 - (void)viewDidLoad { 02      [super viewDidLoad]; 03   04      // Set the custom back button 05      UIImage *buttonImage = [UIImage imageNamed:@"back_button.png"]; 06   07      //create the button and assign the image 08      UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; 09      [button setImage:buttonImage forState:UIControlStateNormal]; 10   11      //set the frame of the button to the size of the image (see note below) 12      button.frame = CGRectMake(0, 0, buttonImage.size.width, buttonImage.size.height); 13   14      [button addT