Ray Wenderlich的swift教程03--提醒视图控制器UIAlertController

tutorial4

本课程是实现一个在30秒内点击按钮数统计的小游戏。

添加一个Lable到故事板上,编辑文本后,选菜单Editor\Size to Fit(或按command+=),使得文本框自适应文本大小。

添加一个定时器var timer = NSTimer(),在didView里调用setupGame,就能实现启动后,开始30秒倒计时

    func setupGame(){
        count = 0
        seconds = 30
        ScoresLable.text = "Score:\n\(count)"
        timerLabel.text = "Time:\(seconds)"
        timer = NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: Selector("subtractTime"), userInfo: nil, repeats: true)
    }
    func subtractTime() {
        seconds--
        timerLabel.text = "Time: \(seconds)"
        
        if(seconds == 0)  {
            //stop timer
            timer.invalidate()
        }
    }

在timer.invalidate()后面,添加以下句子

创建一个UIAlertController类的alert,

let alert = UIAlertController(title: "Time is up!",
 message: "You scored \(count) points",
 preferredStyle: UIAlertControllerStyle.Alert)

接着添加一个BUTTON用addAction(),如果点击这个按钮,回到setupGame()函数,再玩一次游戏

alert.addAction(UIAlertAction(title: "Play Again", style: UIAlertActionStyle.Default, handler: {
  action in self.setupGame()
}))
最后显示这个alert的视图控件

presentViewController(alert, animated: true, completion:nil)


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值