Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6896329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:01:31+00:00 2026-05-27T07:01:31+00:00

I am new in iPhone devlopment. I have an UITextView in a xib. There

  • 0

I am new in iPhone devlopment. I have an UITextView in a xib. There I displaying an email address link. I want to open iPhone’s mail application while clicking on that email link. How can I achieve that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:01:32+00:00Added an answer on May 27, 2026 at 7:01 am

    As pointed out in this answer, you can set the dataDetectorTypes property of the UITextView:

    textview.editable = NO;
    textview.dataDetectorTypes = UIDataDetectorTypeAll;
    

    You should also be able to set the detectorTypes in Interface Builder.

    From Apple documentation:

    UIDataDetectorTypes

     Defines the types of information that can be detected in text-based content.
    
     enum {    
         UIDataDetectorTypePhoneNumber   = 1 << 0,   
         UIDataDetectorTypeLink          = 1 << 1,    
         UIDataDetectorTypeAddress       = 1 << 2,    
         UIDataDetectorTypeCalendarEvent = 1 << 3,    
         UIDataDetectorTypeNone          = 0,    
         UIDataDetectorTypeAll           = NSUIntegerMax   
     }; typedef NSUInteger UIDataDetectorTypes;
    

    Clicking on the email address in your UITextView should then automatically open the Mail application.

    On a side note, if you want to send the email from within your app itself, you can use the MFMailComposeViewController.

    Note that for the MFMailComposeViewController to be shown, Mail app needs to be installed on the device, and have an account linked to it, otherwise your app will crash.

    So you can check this with [MFMailComposeViewController canSendMail]:

    // Check that a mail account is available
        if ([MFMailComposeViewController canSendMail]) {
            MFMailComposeViewController * emailController = [[MFMailComposeViewController alloc] init];
            emailController.mailComposeDelegate = self;
    
            [emailController setSubject:subject];
            [emailController setMessageBody:mailBody isHTML:YES];   
            [emailController setToRecipients:recipients];
    
            [self presentViewController:emailController animated:YES completion:nil];
    
            [emailController release];
        }
        // Show error if no mail account is active
        else {
            UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Warning" message:@"You must have a mail account in order to send an email" delegate:nil cancelButtonTitle:NSLocalizedString(@"OK", @"OK") otherButtonTitles:nil];
            [alertView show];
            [alertView release];
        }
    

    MFMailComposeViewController Class Reference

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am new to iphone development.I have created a view based application.Now i want
I am new to this iphone development.I have created a tab bar application which
I am new to iPhone development.I have created an application using UITableViewCellAccessoryDisclosureIndicator . I
I am new in iPhone development. I want to create one application in which
I am new to iPhone development. I have a application in which i need
I am new in iphone development, and I have made a simple application for
i am new in iphone development,i want to implement push Notification in my application.
I'm new to iphone development.I have practiced some view based application programs and console
I am new to iphone development.I have text on the button.I want only test
I am new to iphone development.I have created a map application.I have created a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.