简体   繁体   中英

Setting UITextView text in Swift

I have an UITextView in my prototype cell in a TableView . My problem is that the value is not set.

In the following code I set a title with a label, and the medShortText is my UITextView .

medLabel.text = medi.name

medShortText.text = medi.shortText

When I debug this code, then I can see, that the correct value is passed to UITextView . However in the table view it appears empty. In debug for medShortText.text I only see this: NSBigMutableString I put in an alert that pops up on row selection with the text from UITextView , and to my surprise what comes up is the original placeholder text (latin garbage).

What am I missing?

Thanks

用简单的UILabel替换UITextView,一切正常。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM