以警告方式显示图像的任何方式

时间:2011-02-01 08:52:28

标签: iphone

所有

我正在做一个应用程序,在选择了5个图像后,应该会出现一个弹出窗口,说明已完成,并且有一个OK按钮,点击OK后它将会显示原来的视图。

我该怎么做,我可以用警报视图显示图像。

请帮帮我。

非常感谢您的帮助

2 个答案:

答案 0 :(得分:1)

你应该可以这样做:

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

    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(220, 10, 40, 40)];

    NSString *path = [[NSString alloc] initWithString:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"image.png"]];
    UIImage *bkgImg = [[UIImage alloc] initWithContentsOfFile:path];
    [imageView setImage:bkgImg];
    [bkgImg release];
    [path release];

    [successAlert addSubview:imageView];
    [imageView release];

    [successAlert show];
    [successAlert release];

认为这应该有效。不知道它是否会通过苹果的评论。

答案 1 :(得分:0)

您可以参考Aurum的帖子在警报视图中设置图片。

要覆盖整个屏幕,您需要自定义警报视图。

为此,您可以参考此Post