Skip to content

Instantly share code, notes, and snippets.

View sunnyleeyun's full-sized avatar
🎯
Focusing

Sunny sunnyleeyun

🎯
Focusing
View GitHub Profile
class UITextViewPadding : UITextView {
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
textContainerInset = UIEdgeInsets(top: 8, left: 4, bottom: 8, right: 4)
}
}