In plist I have stored Credentials from that I need to check for the correct Credential and if the correct Credential match then replace the password field with the new..for this I Have 3 UITextField . A for new email-id ,b for current password and c for new password ..if a==b means current password == email id then new password entered in the c textfield should replace in the current password field in plist
.
- (void)authenticateCredentials {
NSMutableArray *plistArray = [NSMutableArray arrayWithArray:[self readFromPlist]];
for (int i = 0; i< [plistArray count]; i++)
{
id object = [plistArray objectAtIndex:i];
if ([object isKindOfClass:[NSDictionary class]]) {
NSDictionary *objDict = (NSDictionary *)object;
if ([[objDict objectForKey:@"pass"] isEqualToString:emailTextFeild.text] && [[objDict objectForKey:@"title"] isEqualToString:passwordTextFeild.text])
{
NSLog(@"Correct credentials");
// what should be the condition to replace current password to new password
}
NSLog(@"INCorrect credentials");
} else {
NSLog(@"Error! Not a dictionary");
}
}
}
