iOS 8 : How to check the given email address is really existing or not in iphone sdk? -


how check given validated email address existing in live in iphone sdk. give me suggestion.

thanks in advance.

check link dude

http://iwantmyreal.name/blog/2013/07/28/email-address-validation-in-ios/

and try follow below instructions

cocoapod

platform :ios, '5.0'  pod 'guardpost-objectivec', '~> 0.1.1' 

installation

$ pod install 

appdelegate.m

#import <gpguardpost.h>  @implementation appdelegate  - (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {     // register mailgun api key     [gpguardpost setpublicapikey:@"pubkey-from-mailgun"];      // other app launch options here...      return yes; } @end 

email address validation

[gpguardpost validateaddress:self.emailfield.text                      success:^(bool validity, nsstring *suggestion) {                         nslog(@"api call successful");                      }                      failure:^(nserror *error) {                         nslog(@"there error: %@", [error localizeddescription]);                      }]; 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -