UIAlertView *theAlert = [[[UIAlertViewalloc]
initWithTitle:@"Attention"
message:@"I‘m a Chinese!"delegate:nilcancelButtonTitle:@"Cancel"
otherButtonTitles:@"Okay",nil] autorelease];
[theAlert show];
UIImage *theImage =
[UIImageimageNamed:@"loveChina.png"];
theImage = [theImage
stretchableImageWithLeftCapWidth:0topCapHeight:0];
CGSize theSize = [theAlert frame].size;
UIGraphicsBeginImageContext(theSize);
[theImage drawInRect:CGRectMake(5, 5,
theSize.width-10, theSize.height-20)];
theImage =
UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
theAlert.layer.contents = (id)[theImage CGImage];
原文:http://www.cnblogs.com/CJH5209/p/6072137.html