NSTextContainer is an iOS class that defines a region in which text stored in an NSTextStorage object is displayed using an NSLayoutManager object.
Questions tagged [nstextcontainer]
47 questions
-1
votes
2 answers
Extra whitespace that causes a newline by UITextView at end is ignored
This is my code:
import UIKit
class ViewController: UIViewController {
init() {
super.init(nibName: nil, bundle: nil)
let textView = UITextView(frame: .zero)
textView.isScrollEnabled = false
…

J. Doe
- 12,159
- 9
- 60
- 114
-1
votes
1 answer
How to fit custom UIBezierPath into NSTextContainer
I'm using the method in this link: How to fit text in a circle in UILabel
while (![circle containsPoint:p])
When I use the original method, [UIBezierPath bezierPathWithOvalInRect:r]; it works well. But when I draw my own UIBezierPath and substitute…

Reeve
- 11
- 3