More than 3 years have passed since last update.
NSTextFieldの便利さ
四角形を描きたい!と思った時NSTextFieldを使えば3行で終わる!
example.swift
@IBOutlet var Label:NSTextField!//これをLabelと関連づけておく
//描写するタイミング
Label.stringValue = ""//文字なし
Label.backgroundColor = NSColor.red//好きな色
Label.drawsBackground = true//これを書かないと色が描写されない
これで終わり!しかも文字も入れれてすごい!
以上
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin