我需要帮助解决这个特殊的问题。我有一个多项选择题应用程序,我可以选择 UITextview。有时,无论出于何种原因,选项 D 都会被减半。
截屏:
不知道这里发生了什么。我基本上让 UITextView 框架调整到它的 contentSize。
CGRect dFrame = choiceD.frame;
dFrame.size.height = choiceD.contentSize.height;
choiceD.frame = dFrame;
有任何想法吗?提前致谢。