- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SDCAlertView Cocoapod 并尝试自定义 alertview 和 actionsheet,以便 cornerradius、actionViewSeparatorColor、默认文本颜色和 .Destructive 文本颜色发生变化,如这些图像所示:
我已经尝试按照 github 文档中的建议创建一个类型:
If you are looking for more customizations, create a type that conforms to VisualStyle and use visualStyle on the AlertController instance. You can also subclass DefaultVisualStyle for a set of default values that you can then override as needed.
但是没有任何运气。我希望您能举例说明如何做到这一点?
这些是我希望在 pod 中覆盖的三件事:
VisualStyle protocol extension:
public var actionViewSeparatorColor: UIColor { return UIColor(red: 142/255.0, green: 54/255.0, blue: 65/255.0, alpha: 0.4) }
public func textColor(forAction action: AlertAction?) -> UIColor {
if action?.style == .Destructive {
return Style.maincolor()
} else {
return Style.mainTextColor()
}
}
DefaultVisualStyle Class:
public var cornerRadius: CGFloat {
if #available(iOS 9, *) {
return 6
} else {
return self.alertStyle == .Alert ? 6 : 4
}
}
为了回答您的问题,在评论中,我尝试这样做:
import UIKit
import SDCAlertView
public class AlertViewStyle: VisualStyle {
private let alertStyle: AlertControllerStyle
init(alertStyle: AlertControllerStyle) { self.alertStyle = alertStyle }
public var width: CGFloat { return self.alertStyle == .Alert ? 270 : 1 }
public var cornerRadius: CGFloat {
if #available(iOS 9, *) {
return 6
} else {
return self.alertStyle == .Alert ? 6 : 4
}
}
public var margins: UIEdgeInsets {
if self.alertStyle == .Alert {
if #available(iOS 9, *) {
return UIEdgeInsets(top: 10, left: 0, bottom: 10, right: 0)
} else {
return UIEdgeInsetsZero
}
} else {
if #available(iOS 9, *) {
return UIEdgeInsets(top: 30, left: 10, bottom: -10, right: 10)
} else {
return UIEdgeInsets(top: 10, left: 10, bottom: -8, right: 10)
}
}
}
public var actionViewSize: CGSize {
if #available(iOS 9, *) {
return self.alertStyle == .Alert ? CGSize(width: 90, height: 44) : CGSize(width: 90, height: 57)
} else {
return CGSize(width: 90, height: 44)
}
}
public func font(forAction action: AlertAction?) -> UIFont {
switch (self.alertStyle, action?.style) {
case (.Alert, let style) where style == .Preferred:
return UIFont.boldSystemFontOfSize(17)
case (.Alert, _):
return UIFont.systemFontOfSize(17)
case (.ActionSheet, let style) where style == .Preferred:
return UIFont.boldSystemFontOfSize(20)
case (.ActionSheet, _):
return UIFont.systemFontOfSize(20)
}
}
public func textColor(forAction action: AlertAction?) -> UIColor {
if action?.style == .Destructive {
return Style.mainColour
} else {
return Style.mainTextColour
}
}
public var actionViewSeparatorColor: UIColor { return UIColor(red: 142/255.0, green: 54/255.0, blue: 65/255.0, alpha: 0.4) }
}
然后我尝试通过以下方式在 View Controller 中创建警报时使它栩栩如生:
let alert = AlertController(title: title, message: message, preferredStyle: .Alert)
let alertStyle: AlertControllerStyle = ???
alert.visualStyle = AlertViewStyle(alertStyle)
我只是在玩。我尝试了一大堆不同的东西来尝试让它编译但没有运气。我从 SDCAlertView github 问题中看到有人已成功自定义警报和操作 TableView 。基于上面的代码,你对我应该如何进行有什么建议吗?
任何见解将不胜感激。
非常感谢,
亚历克西斯
最佳答案
在一位同事的帮助下,我想通了其中的一部分。创建 AlertViewStyle 类是正确的。
然后当您在 View Controller 中创建警报时,您将执行以下操作:
//Create an alert
let alert = AlertController(title: title, message: message, preferredStyle: .Alert)
//And declare its style
// for alertviews
alert.visualStyle = AlertViewStyle(alertStyle: .Alert)
// for actionsheets
alert.visualStyle = AlertViewStyle(alertStyle: .ActionSheet)
// Add actions and present...
alert.addAction(AlertAction(title: "OK", style: .Default))
alert.present()
这改变了操作表的所有内容,但对于警报 View ,我仍然无法更改标题和消息标签的字体或颜色。如果您对如何访问和自定义它有任何建议,那就太好了。谢谢。
关于swift - 自定义 SDCAlertView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34783527/
为了显示警报,我使用 SDCAlertView (UIAlertView 的克隆)。我想通过点击 UIActionSheet 之类的屏幕来关闭警报。 最佳答案 与UIAlertView不同,SDCAl
我正在使用 SDCAlertView Cocoapod 并尝试自定义 alertview 和 actionsheet,以便 cornerradius、actionViewSeparatorColor、
我从 cocoapods 安装了 SDCAlertView 到我的项目,因为我需要在左侧的 alertAction 上添加一个带有文本的图标,我有一个关于如何将图像(图标)添加到左侧的 AlertAc
我正在使用 pod SDCAlertView,我需要向我的内容 View 添加一个 imageView + 一个 textField,但是我在约束方面遇到了问题,下面是我的代码。 let imageV
如何将missOnOutsideTapped 设置为 false?我试图阻止用户在点击“确定”按钮之前关闭 AlertController myView.translatesAutoresizingM
我必须在中心显示一个自定义 iOS 7 风格的警报请求程序,其中包含一组自定义按钮(具体来说是类别过滤器切换)。为此,我找到了优秀的 SDCAlertView在 GitHub 上。我的方法是创建一个自
我想知道这是否可行或有替代方案吗?我只需要在警报 View 中进行多项选择,并且正在努力寻找一个好的解决方案 最佳答案 我使用一个名为 MSAlertController 的库来执行此操作,我使用其
出于某种原因 SDCAlertView clickButtonAtIndex来自 SDCAlertView POD 的回调(见下面的代码块)从未被调用。 SDCAlertView 显示,但在我选择警报
我正在一个使用 Objective-C 开发的项目中使用 SDCAlertview,我希望能够设置视觉样式,但我无法这样做。 我能够导入到任何其他 obj-c 类中的唯一文件是 SDCAlertVie
我是一名优秀的程序员,十分优秀!