我正在尝试更改uialertview的背景。
一切正常,除了我添加到uialert视图中的背景图像不会在alertview中缩放。因此,基本上,根据当前大小,您只会看到我的背景图像的一部分。
有什么方法可以使图像在alerview内缩放直到合适为止?

UIAlertView *theAlert = [[UIAlertView alloc] initWithTitle:title
                                                    message:msg
                                                   delegate:nil
                                          cancelButtonTitle:@"OK"
                                          otherButtonTitles: nil];
    [theAlert show];

    UIImage *theImage = [UIImage imageNamed:@"bg.jpg"];
    theImage = [theImage stretchableImageWithLeftCapWidth:16 topCapHeight:16];
    CGSize theSize = [theAlert frame].size;

    UIGraphicsBeginImageContext(theSize);
    [theImage drawInRect:CGRectMake(0, 0, theAlert.frame.size.width, theAlert.frame.size.height)];
    theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    theAlert.layer.contents = (id)[theImage CGImage];
    [theAlert release];

最佳答案

请看一下:
http://joris.kluivers.nl/iphone-dev/?p=CustomAlert

他们通过子类化UIAlertView来解释如何做到这一点。祝好运!

08-06 04:06