Why am I am getting the warning “Multiple methods named 'center' found”
问题 I only get this warning if I import my helper class (#import "JLHelper.h"). An example of the where the warning occurs... [[subViews objectAtIndex:i] center].y+translation.y)]; I understand that it is telling me that the compiler sees more than one method named center, but center is declared in the framework in CLRegion.h. Why would the compiler see more than one method in this case? Is it a problem to be concerned about, and if so how do I track down and resolve it. Thanks, John Problem