我在swift 2代码中有两个函数。
func myfunctionA (sender: UIButton!){
// some code
myfunctionB (sender: UIButton!) }
另一个函数是func myfunctionB。 我从myfunctionA里面调用myfunctionB。
我需要知道如何将相同的sender参数从myfunctionA传递给myfunctionB。
答案 0 :(得分:1)
func myfunctionA (sender: UIButton!){
myfunctionB(sender);
}
应该有效