Reputation: 661
After the show segue from UITableView to UITextView
I have the following problem: If i clear constraints for the UITextView the result is, of course unsatisfied:
But the good part of this – is starting from the first line at the top.
If I try to add suggested constraints to the UITextView I got this:
The problem is that the text begins not from the start.
What I need to get after segue page with text aligned to top like this:
Upvotes: 1
Views: 524
Reputation: 21
You can add your own constraints to bottom bar. first you need to place your textview up the bottom bar
Then add your own constraint to bar(drug with right button from textview on tabor).
Add vertical spacing
Then add other missing constraints
Result:
Upvotes: 1
Reputation: 1352
I believe embedding the textView in a scrollView will fix the issue and allow for the viewing of all the text.
Upvotes: 0