我有一个 UIAlert 构建器,我想在标题和按钮之间添加一个图像。这是我的代码:
UIAlertView *pull = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"pull_wire", nil)
message:nil
delegate:nil
cancelButtonTitle:NSLocalizedString(@"continue_text", nil)
otherButtonTitles:nil];
UIImageView *imageView = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @"cable.png"]];
[pull addSubview:imageView];
[pull show];
但是图像显示在 UIAlertView 的顶部。
使用@yunas 解决方案:
会不会是图太大了?
调整图像大小:
如何在 UIAlert 中获取它?