I need to data from one ViewController to another ViewController Here I\'ve Multiple Textfields in first ViewController then it will passed the SecondViewController in Whatever
this is for storing
NSString *verifyStatus=@"Y"; [[NSUserDefaults standardUserDefaults]setObject:verifyStatus forKey:@"verify_status"]; [[NSUserDefaults standardUserDefaults] synchronize];
for retrieving
NSString *verify_status = [[NSUserDefaults standardUserDefaults]stringForKey:@"verify_status"];