如何使用多个自定义按钮和背景图像显示警报消息? [关闭]
Posted
技术标签:
【中文标题】如何使用多个自定义按钮和背景图像显示警报消息? [关闭]【英文标题】:how to display the alert message with multiple custom buttons and with back ground image? [closed] 【发布时间】:2012-04-26 07:00:32 【问题描述】:您好,如何实现多个自定义按钮的代码警报消息代码以及如何为警报消息设置背景自定义图像,因此请为我在 iphone 中的请求提供指导。
【问题讨论】:
【参考方案1】:我会像这样自己去,
UIView *myAlertView = [[UIView alloc] initWithFrame:CGRectMake(50.0, 190.0, 110.0, 100.0)];
myAlertView.backgroundColor=[UIColor clearColor];
[self.view addSubview:myAlertView];
UIImageView *imgAlertBack = [[UIImageView alloc] initWithFrame:myAlertView.frame];
imgAlertBack.image = [UIImage imageNamed:@"AlertBackgroundImageWithNiceCurves.png"];
[myAlertView addSubview:imgAlertBack];
[myAlertView addSubview:<add your buttons>];
【讨论】:
【参考方案2】:alertview 的实现和自定义是非常困难的,有一些关于这个的教程跟随这个 http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-uialertview-custom-graphics/
Customizing UIAlertView
http://kwigbo.com/post/318396305/iphone-sdk-custom-uialertview-background-color
How to create custom UIAlertView
【讨论】:
以上是关于如何使用多个自定义按钮和背景图像显示警报消息? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
iPhone - 如何使用我的纹理背景自定义 UINavigationBar 后退按钮