Untitled
By: a guest | Jun 7th, 2010 | Syntax:
Objective C | Size: 1.22 KB | Hits: 260 | Expires: Never
MyCustomAlertView *alertView = [[MyCustomAlertView alloc] initWithTitle:@"It's time to make a decision"
message:@""
cancelButton:[MyCustomAlertView buttonWithTitle:@"Cancel the process"
target:self
action:@selector(cancelTheProcess)],
otherButtonsArray:[MyCustomAlertView buttonWithTitle:@"Do this cool thing"
target:self
action:@selector(doThisCoolThing1)],
[MyCustomAlertView buttonWithTitle:@"Do this other cool thing"
target:self
action:@selector(doThisOtherCoolThing)],
nil];