所有
我正在做一个应用程序,在选择了5个图像后,应该会出现一个弹出窗口,说明已完成,并且有一个OK按钮,点击OK后它将会显示原来的视图。
我该怎么做,我可以用警报视图显示图像。
请帮帮我。
非常感谢您的帮助
答案 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)