首页 > 其他 > 详细

更改AlertView背景

时间:2015-02-13 19:52:53      阅读:293      评论:0      收藏:0      [点我收藏+]
UIAlertView *theAlert = [[[UIAlertViewalloc] initWithTitle:@"Atention"  
                                                     message: @"I‘m a Chinese!"  
                                                    delegate:nil   
                                            cancelButtonTitle:@"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)];// 这个地方的大小要自己调整,以适应 alertview 的背景颜色的大小。  
   theImage = UIGraphicsGetImageFromCurrentImageContext();     
UIGraphicsEndImageContext();  
   theAlert.layer.contents = (id)[theImage CGImage];

 

更改AlertView背景

原文:http://www.cnblogs.com/yunis/p/4290769.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!