UITextView with text less than 10 characters hangs iOS 9

前端 未结 4 1468
再見小時候
再見小時候 2020-12-15 23:52

Starting from iOS 9 (I used Xcode 7.0 beta 6 (7A192o)), an Objective-C app with UITextView will hang if the text view\'s text is less than 10 characters. CP

4条回答
  •  借酒劲吻你
    2020-12-16 00:19

    i have found the solution first check the memory leak and please add the this line of code in particular class.

    -(void)viewWillAppear:(BOOL)animated {

    [super viewWillAppear:YES];

    }

    This is helpful for me my problem is resolved.

提交回复
热议问题