Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 367 Bytes

iOS.md

File metadata and controls

13 lines (9 loc) · 367 Bytes

Screen Sizes and resolutions

Size of Screen

Add text to NSScrollView

@IBOutlet weak var textScroll: NSScrollView!
    
let text = textScroll.documentView!.textStorage!!
let attr = NSAttributedString(string: "Hello World")

text.appendAttributedString(attr)