issue enabling dataDetectorTypes on a UITextView in a UITableViewCell

后端 未结 2 376
面向向阳花
面向向阳花 2021-01-24 17:24

I have a UITextView inside a UITableViewCell in a table. \"editable\" for the UITextView is turned off, which allows me to set dataDetectorTypes to UIDataDetectorTypeAll, which

2条回答
  •  孤城傲影
    2021-01-24 17:56

    Maybe you could try passing the touch up the responder chain.

    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
       [super touchesBegan:touches withEvent:event];
    }
    

提交回复
热议问题