Does anybody know how to access all index’s and not just a specific for a certain key
ie[[anArray objectAtIndex:indexPath.row]objectForKey:@"Number"]
i want [[anArray objectAtIndex:ALL ROWS]objectForKey:@"Number"]
Thanks 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use -valueForKey: method of NSArray:
This method returns an array containing results of -valueForKey: called on each element of array (putting NSNull object in case that result is nil).