如何在我的警报视图上添加笑脸? [复制]

Posted

技术标签:

【中文标题】如何在我的警报视图上添加笑脸? [复制]【英文标题】:How to add smiley on my alert view? [duplicate] 【发布时间】:2012-05-23 05:49:02 【问题描述】:

可能重复:Image in UIAlertView

我正在实现一个益智游戏。玩家获胜后,我会显示您获胜的警报。但是我想在我的警报视图上添加笑脸。该怎么做?

【问题讨论】:

【参考方案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:@"smile.png"]];
    UIImage *bkgImg = [[UIImage alloc] initWithContentsOfFile:path];
    [imageView setImage:bkgImg];
    [bkgImg release];
    [path release];

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

    [successAlert show];
    [successAlert release];

复制表格here

【讨论】:

以上是关于如何在我的警报视图上添加笑脸? [复制]的主要内容,如果未能解决你的问题,请参考以下文章

如何在我的应用程序中仅打印一次警报视图?

用于询问用户评论和费率的定制警报视图

为啥 nodejs 在我的 BIT(1) 行上返回笑脸?

如何防止键盘出现在自定义警报视图上

如何在 Final Android App 中的 WebView 上添加 Imageview

如何在 iOS7 中将 UIDatePicker 添加到 UIALertView