i am having 3 arrays with info regarding peoples.
one array is with name,second array with email,third array with phone number.
eg:{jon,Willems…},{jon@example.com,Willems@example.com…},{123456,123456,…}
I need to display agent names in table.
when ever i selects people name in table i need to retrieve that particular person email and phone number.
how can i done,can any one please post some code or tutorial.
Thank u in advance.
In didSelectRowAtIndextPath get the indexPath value
EDIT:
The Above code assumes that a user is associated with a single email, phone number
If a user name is associated with many email, phone numbers use NSDictionary or Custom Object.