Skip to content

Instantly share code, notes, and snippets.

View nocchijiang's full-sized avatar

Zhaoxuan Jiang nocchijiang

  • ByteDance
  • Shanghai, China
View GitHub Profile
@nocchijiang
nocchijiang / gist:c8e3429890f4f031752c82ac3a35835a
Last active July 19, 2019 07:19
Sample Code for Reproducing Infinite Recursion changing frame during setContentSize: for UITextView
#import "ViewController.h"
@interface TextView : UITextView
@end
@implementation TextView
- (void)setContentSize:(CGSize)contentSize {
CGRect frame = self.frame;
frame.size.height = contentSize.height + 5;