我创建了一个自定义警报视图,其中包含动态创建的按钮。
一切正常,但我不知道如何让每个按钮做不同的事情。
我的意思是我调用函数addButton
并传递一段代码(如UIAlertAction()
中所示)。我希望在按下按钮后执行该代码,但实际上在按钮加载时执行。
很抱歉,如果我不清楚,但我不知道有关我的问题的具体条款。基本上我尝试重现UIAlertView
并且我不知道如何完全重拍UIAlertAction
。
这是方法(注意:它在自定义类中):
func addButton(buttonNumber number: Int, title: String, color: UIColor, actions: () -> Void ) {
// Initialization
let button = UIButton(frame: CGRectMake(5, self.wrapper.bounds.height-CGFloat(55*number), self.wrapper.bounds.width-10, 50))
// Configuration
button.setTitle(title, forState: .Normal)
button.backgroundColor = color
button.layer.cornerRadius = 10
button.addTarget(self, action: #selector(myCustomView.buttonPressed(actions:)), forControlEvents: .TouchUpInside)
wrapper.addSubview(button)
}
这是选择器(我知道它不正确):
func buttonPressed(actions actions: () -> Void) {
actions() // How do I get the actions from addButton?
}
这是我打电话给addButton
:
let alertView = UIStoryboard(name: "Popups", bundle: nil).instantiateViewControllerWithIdentifier("HAlertView") as! HAlertViewVC
prepareAlert(alertView)
alertView.loadAlert(title: "Hold on", message: "You need to add at least the goal before saving", image: "Warning-Icon", numberOfActions: 1)
alertView.addButton(buttonNumber: 1, title: "Close", color: UIColor(red: 246.0/255.0, green: 71.0/255.0, blue: 71.0/255.0, alpha: 1), actions: {
// alertView.dismiss() // This is the problem. That's just a function that hides the alert view but the issue is that it gets executed right away.
})
答案 0 :(得分:1)
您正在寻找的是关闭:
var some_code_block = {
print("my awesome code block!")
}
将它置于更高/全局范围,然后您可以随意运行/更改块,只需在闭包末尾添加'()'(变量名称)
func addCode() {
// Wont execute:
some_code_block = { print("new code inserted") }
}
func buttonPressed() {
// Executes:
some_code_block()
}
就个人而言,我使用数组/字典来动态存储/更新代码块..然后你可以遍历/匹配索引/键来获得你想要的代码块。
如果您的问题实际上是制作不同的按钮,那么您可以将新创建的UI按钮实例存储到数组或字典中
[UIButton]
按钮的数组/字典,与代码块的数组/字典匹配当然可以工作......你只需要确保它们在正确的范围内/并同步索引/键。
或者,您可以创建一个包含UIButton实例和代码块的类/结构,然后将类/结构放入数组/字典
// Make your own initializer for your purposes
struct ButtonStuff {
var button: UIButton?
var code_block: ()?
}
// Make empty array that holds type ButtonStuff (global / outer scope)
var buttons: [ButtonStuff] = []
func addButton(pram1:Pram1, pram2:Pram2) {
// Make a new button (called locally inside of a func)
var new_button = ButtonStuff()
// Put stuff in here...
// new_button.button = pram1
// new_button.code_block = pram2
// Add our locally made new_button to the Global buttons array
buttons.append(new_buttons)
}
注意:pram1,pram2可以是您想要的任何内容,但要存储到代码块(不运行它),您需要键入()
。如果要自动运行代码块,可以使用类型()->()
有很多方法可以做到这一点(你不必使用选项);只是一个简单的例子。然后你只需要做一些逻辑/算法来找到正确的按钮,显示它,然后调用代码块。
如果您有任何疑问,需要我编辑我的答案,请在评论中留言@fluidity