I am using a UIWebView and i have written this code
NSString *str = [NSString stringWithFormat:@"Hey, my id is abc@xyz.com"];
[aboutWebView loadHTMLString:str baseURL:nil];
Now In this code I want to detect that id and I want the option that user can do mail to this id
I am able to detect the link but nothing happen after it. i am using simulator.
Mail.app is not install on the iPhone simulator. You will need to test that part of your code on an actual device.