swift手记-1

前端之家收集整理的这篇文章主要介绍了swift手记-1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//
//  ViewController.swift
//  mylearn
//
//  Created by myhaspl 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按钮,将轮流显示中英文


原文链接:https://www.f2er.com/swift/324872.html

猜你在找的Swift相关文章