我很快就是新人。 我通过按下同一个viewController中的另一个按钮创建了动态按钮,代码如下:
@IBAction func yenibtn(sender: AnyObject) {
let btn = UIButton()
btn.frame = CGRectMake(10, 10, 50, 50) //set frame
btn.setTitle("btn", forState: .Normal) //set button title
btn.setTitleColor(UIColor.redColor(), forState: .Normal) //set button title color
btn.backgroundColor = UIColor.greenColor() //set button background color
btn.tag = 1 // set button tag
btn.addTarget(self, action: "btnclicked:", forControlEvents: .TouchUpInside) //add button action
self.view.addSubview(btn) //add button in view
}
func clickMe(sender:UIButton!)
{
print("Button Clicked")
}
我创建了第二个viewController并按performSegueWithIdentifier
函数导航。当我回调前一个控制器时,动态对象消失。有没有办法在重新加载前一个ViewController时保留动态按钮?
答案 0 :(得分:2)
请使用:
var btn:UIButton!
@IBAction func yenibtn(sender: AnyObject) {
btn= UIButton()
btn.frame = CGRectMake(10, 10, 50, 50) //set frame
///... your code
}
<强>更新强>
使用第二个viewcontroller中的代码关闭
@IBAction func basgeri(sender: AnyObject) {
performSegueWithIdentifier("bir", sender: self)
}
思考&#34;我关闭了视图控制器&#34;,但你错了!您创建一个新的ViewController!你没有回到上一个!
要修复它,请使用:
@IBAction func basgeri(sender: AnyObject) {
presentingViewController?.dismissViewControllerAnimated(true, completion: nil)
}