-2

嗨,如何实现多个自定义按钮的代码警报消息代码以及如何为警报消息设置背景自定义图像,以便为我在 iphone 中的请求提供指导。

4

2 回答 2

2

我会像这样自己去,

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>];
于 2012-04-26T07:15:56.180 回答
1

实现和自定义警报视图非常困难,有一些关于此的教程,请遵循此 http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-uialertview-custom-graphics/

自定义 UIAlertView

http://kwigbo.com/post/318396305/iphone-sdk-custom-uialertview-background-color

如何创建自定义 UIAlertView

于 2012-04-26T07:08:30.973 回答