Skip to content

Instantly share code, notes, and snippets.

View T-rain's full-sized avatar

T-rain T-rain

  • Taiwan
View GitHub Profile
@T-rain
T-rain / ViewController.swift
Last active March 20, 2016 05:02
Instance member cannot be used on type 'ViewController'
class ViewController: UIViewController {
@IBOutlet weak var numPad: UILabel!
//下面這行會報錯:Instance member 'numPad' cannot be used on type 'ViewController'
var num_pad_text_error = numPad.text
@IBAction func clickOperator(sender: UIButton) {
let operator_text :String = sender.titleLabel!.text!