Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sizeTextViewが固定されていて、テキストのサイズを自動化したい。
「これ」テキストサイズは70である必要があります
「これは」テキストサイズは60である必要があります
「これはテーブルです」テキストサイズは40である必要があります
誰かが私を助けることができますこれは、ショートテキストのテキストに応じてサイズが変更されますサイズはフィットするように拡大縮小する必要があります。
あなたはこれを試すことができます
CGRect frame = _textView.frame; frame.size.height = _textView.contentSize.height; _textView.frame = frame;
上記のスニペットを使用して、UITextViewのコンテンツサイズを調整できます
プログラミングをお楽しみください!