- UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"标题"
- message: @"消息!"
- delegate:nil
- cancelButtonTitle:@"取消"
- otherButtonTitles:@"确定",nil] autorelease];
- [alert show];
- UIImage *theImage = [UIImage imageNamed:@"loveChina.png"];
- theImage = [theImage stretchableImageWithLeftCapWidth:0. topCapHeight:0.];
- CGSize theSize = [theAlert frame].size;
-
- UIGraphicsBeginImageContext(theSize);
- [theImage drawInRect:CGRectMake(0, 0, theSize.width, theSize.height)];
- theImage = UIGraphicsGetImageFromCurrentImageContext();
- UIGraphicsEndImageContext();
- theAlert.layer.contents = (id)[theImage CGImage];
posted @
2013-03-18 11:16
金建彤
阅读(
154)
评论()
编辑
收藏
举报