Since objectAtIndex: returns id, that is, a generic pointer, the compiler can't possibly know what method name to substitute for your property access .name.
You have to completely specify to the compiler what you want to do in this case. Either specify the exact method name:
[[tests objectAtIndex:row] name];
or specify the actual type of the object:
((Test *)[tests objectAtIndex:row]).name;
When you write foo.bar, the compiler has to look in foo's class and find the method names associated with the property bar. Those are usually bar/setBar:, but they could be anything;* because of that ambiguity, the compiler needs to know the actual class of foo. Given only a generic pointer, it can't find that information.
The warning indicates that the compiler also checked whether the object on the left side of the . is a struct with a field called name. There isn't such a field, so the compiler does not know what you want it to do.
*E.g.,
@property(retain, setter=putThisValueIntoBar, getter=hamAndEggs) Bar * bar;