码迷,mamicode.com
首页 > 编程语言 > 详细

swift手记-1

时间:2016-01-19 10:49:29      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

//
//  ViewController.swift
//  mylearn
//
//  Created by liuxing on 16/1/17.
//  Copyright (c) 2016年 myhaspl. All rights reserved.
//

import Cocoa

class ViewController: NSViewController {
    var nowvalue:Bool=true

    override func viewDidLoad() {
        super.viewDidLoad()

        // Do any additional setup after loading the view.
    }

    override var representedObject: AnyObject? {
        didSet {
        // Update the view, if already loaded.
        }
    }


    @IBOutlet weak var helloButton: NSButton!
    @IBAction func showHello(sender: AnyObject) {
        if nowvalue {
            self.helloButton.title="您好,世界"
            nowvalue=false
        }
        else{
            self.helloButton.title="hello,world"
            nowvalue=true
        }
    }
}

反复按下hello,world按钮,将轮流显示中英文

技术分享

技术分享


swift手记-1

标签:

原文地址:http://blog.csdn.net/myhaspl/article/details/50533937

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!