What is that line supposed to do, objectsAtIndexes: will return a array of objects match all the NSIndexPath object wintin the NSIndexSet that is passed as the parameter.
Try objectAtIndex: which will return the object at the index given.
Cell.textLabel.text = [array objectAtIndex:indexPath.row];
4
solved Implicit conversion of ‘NSInteger’ (aka ‘int’) to ‘NSIndexSet *’ is disallowed with ARC