我希望使用UIImageView从一个事件中显示一个Image

时间:2013-01-21 03:43:39

标签: iphone ios objective-c uiimageview uiimage

所以我现在对Objective-C和Xcode非常感到沮丧哈哈...我试图在代码进入时弹出一个图像和if语句,它基本上检查用户是否猜到了正确我游戏中的单词中的字母(想想挂人)。一旦它进入if语句,我想要弹出一个图像,说出“恭喜!你有50分!”然后转到游戏中的下一个单词......

所以代码看起来像这样:

if (isWordCompleted)
{
    //do some code that has the pop up image
    //other stuff as well
}

我看了遍遍stackoverflow,似乎无法得到我正在寻找的答案:S

编辑:

if(isWordComplete)
    {

        //create an image reference to have pop up congratulating the user for guessing the right answer
        UIImage *congratsImage = [UIImage imageNamed:@"Congrats.png"];
        UIImageView *congratsImageView = [[UIImageView alloc] initWithImage:congratsImage];

        [congratsImageView setFrame:CGRectMake(0, 0, 250, 158)];
        [myDisplay setHidden:YES];
        [myDisplay2 setHidden:YES];
        [myDisplay3 setHidden:YES];
        [myDisplay4 setHidden:YES];
        [myDisplay5 setHidden:YES];
        [myDisplay6 setHidden:YES];
        [myDisplay7 setHidden:YES];
        [self checkNumberofWordsUserCompleteInLevel:isWordComplete];
        [self moveToNextWord];
}

1 个答案:

答案 0 :(得分:0)

当你的if语句执行时,if语句打开另一个UIView&在View上放一个

ImageView&还将您的图像放在ImageView中。或者您也可以在iPhone中使用PopupView。

将您的图片放入Popupview。以下工具的UIView是图片: enter image description here

另见图片视图添加图片图片: enter image description here