I have a UITextView inside my custom UITableViewCell. I am using UITextView basically for providing data detection on cell. I have my own custom UIMenuitems set for different cells.
|-------------------------------|
| |
| |------------------| |
| | | |
| | UITextView| |
| |__________________| |
| |
| UITableViewCell|
|_______________________________|
Issue that I am facing is that when I tap the area within UITextView i don't get any menu controller, the expected behavior is, it should call same menu controller that is define for that particulate UITebleViewCell.
If I replace UITextView with UILabel i get proper menu controller but I loose data detection capability.
Please guide me in proper direction, what am I missing or what I am doing wrong?