Dynamic expand UITextView on ios 7

后端 未结 9 1409
天命终不由人
天命终不由人 2020-12-29 09:10

I am using this code

CGRect frame = self.mytext.frame;
frame.size.height = self.mytext.contentSize.height;
self.mytext.frame = frame;

But i

9条回答
  •  梦毁少年i
    2020-12-29 09:24

    Finally i did it.

    If anyone is having the same problem just had this code before

        [_moreDetailsTextView sizeToFit];
    

提交回复
热议问题