i want to display some data into a label but it is not showing the full text. How can i fix this behaviour ? I set the lines to 0, but is still not working.
Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
2
Answers
Set horizontal compression resistance to 1000 (Required).
You can do it in the storyboard or programmatically.
Don’t set a guaranteed height like
equal 50
set a minimum height like>= 50
that ways it will keep on expanding as required.