LoginSignup
0
1

More than 5 years have passed since last update.

[Swift3][Mac]四角形の描写はNSTextFieldが強い

Posted at

NSTextFieldの便利さ

四角形を描きたい!と思った時NSTextFieldを使えば3行で終わる!

example.swift
@IBOutlet var Label:NSTextField!//これをLabelと関連づけておく
//描写するタイミング
Label.stringValue = ""//文字なし
Label.backgroundColor = NSColor.red//好きな色
Label.drawsBackground = true//これを書かないと色が描写されない

これで終わり!しかも文字も入れれてすごい!

以上

0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1