Pass two string to Detail View from Search Array
- by waqqas
I am using a tableview with a search function and is populated by a plist. I want to pass 2 strings through to a DetailView. But I can only get the sting used to populate the cell to pass over. I have tried many variations but can't figure it out. Any help would be greatly appreciated.
DetailView *nextLevel = [DetailView alloc];
NSString *valueString;
NSString *selectedTitle;
if (arraySearch == nil) {
NSString *key = [arrayDataKeys objectAtIndex:indexPath.section];
NSArray *nameSection = [dictAllData objectForKey:key];
NSDictionary *dict = [nameSection objectAtIndex:indexPath.row];
valueString = [dict objectForKey:@"name"];
selectedTitle = [dict objectForKey:@"word"];
} else {
valueString = [arraySearch objectAtIndex:indexPath.row];
**selectedTitle = [arraySearch objectAtIndex:indexPath.row];** //Obviously this is wrong but this is the line I need help with
}
nextLevel.title = valueString;
nextLevel.itemname = valueString;
nextLevel.itemWord = selectedTitle;