Wednesday 8 February 2012

Add Custom Button in iPhone UIKeyboardTypeNumberPad

How to Add Custom Done Button in iPhone UIkeyboard (Number Pad).

Because UIKeyboardTypeNumberPad and the missing "return" key.

http://www.neoos.ch/blog/37-uikeyboardtypenumberpad-and-the-missing-return-key


Wednesday 1 February 2012

Custom UIAlertView Background


Download this and include in your project:

http://www.4shared.com/zip/prjD6ZdU/TSAlertView.html


Then Use:

#import "TSAlertView.h"

[[[[TSAlertView alloc] initWithTitle:@"Title" message:@"message" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil] autorelease] show];



- (void)alertView:(TSAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{

}