我正在创建自定义ui警报视图。一切正常,除了用于自定义警报的任何背景图像在其顶部都有标准的蓝色覆盖。无论如何,我可以摆脱这个?
(电话是警报视图的backgroundImage
)
.m自定义类
@synthesize backgroundImage, alertText;
- (id)initWithImage:(UIImage *)image text:(NSString *)text {
if (self = [super init]) {
alertTextLabel = [[UILabel alloc] initWithFrame:CGRectZero];
alertTextLabel.textColor = [UIColor whiteColor];
alertTextLabel.backgroundColor = [UIColor clearColor];
alertTextLabel.font = [UIFont boldSystemFontOfSize:28.0];
[self addSubview:alertTextLabel];
self.backgroundImage = image;
self.alertText = text;
}
return self;
}
- (void) setAlertText:(NSString *)text {
alertTextLabel.text = text;
}
- (NSString *) alertText {
return alertTextLabel.text;
}
- (void)drawRect:(CGRect)rect {
//CGContextRef ctx = UIGraphicsGetCurrentContext();
CGSize imageSize = self.backgroundImage.size;
//CGContextDrawImage(ctx, CGRectMake(0, 0, imageSize.width, imageSize.height), self.backgroundImage.CGImage);
[self.backgroundImage drawInRect:CGRectMake(0, 0, imageSize.width, imageSize.height)];
}
- (void) layoutSubviews {
alertTextLabel.transform = CGAffineTransformIdentity;
[alertTextLabel sizeToFit];
CGRect textRect = alertTextLabel.frame;
textRect.origin.x = (CGRectGetWidth(self.bounds) - CGRectGetWidth(textRect)) / 2;
textRect.origin.y = (CGRectGetHeight(self.bounds) - CGRectGetHeight(textRect)) / 2;
textRect.origin.y -= 0.0;
alertTextLabel.frame = textRect;
alertTextLabel.transform = CGAffineTransformMakeRotation(- M_PI * .08);
}
- (void) show {
[super show];
CGSize imageSize = self.backgroundImage.size;
self.bounds = CGRectMake(0, 0, imageSize.width, imageSize.height);
}
在我的Viewcontroller中调用警报
IBAction为:
UIImage *backgroundImage = [UIImage imageNamed:@"Telephone.png"];
alert = [[JKCustomAlert alloc] initWithImage:backgroundImage text:NSLocalizedString(@"Title", nil)];
[alert show];
[self performSelector:@selector(hideAlert) withObject:nil afterDelay:4.0];
答案 0 :(得分:1)
根据ios文档
子类注释
UIAlertView类旨在按原样使用,但不是 支持子类化。此类的视图层次结构是私有的 不得修改。
这可能是您在修改背景时遇到问题的原因。
无论如何,您要做的是一个简单的自定义视图。制作您自己的自定义视图,并使其行为像您自己的警报视图。
这很容易。