You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (foundName.length && [instance respondsToSelector:NSSelectorFromString(foundName)]) {
469
-
if (propertyClass == class) {
470
-
[tip appendFormat:@",but found %@ method '%@', please check if you need to call this method", self.isAssignedValue ? @"setter" : @"getter", foundName];
471
-
} else {
472
-
[tip appendFormat:@",but found %@ method '%@' in parent class %@, please check if you need to call this method", self.isAssignedValue ? @"setter" : @"getter", foundName, NSStringFromClass(propertyClass)];
if (foundName.length && [instance respondsToSelector:NSSelectorFromString(foundName)]) {
469
+
[tip appendFormat:@",but found %@ method '%@', please check if you need to call this method", self.isAssignedValue ? @"setter" : @"getter", foundName];
[tip appendFormat:@",but found %@ method '%@', please check if you need to call this method", self.isAssignedValue ? @"setter" : @"getter", currentName];
if (method && [instance respondsToSelector:NSSelectorFromString(currentName)]) {
482
+
[tip appendFormat:@",but found %@ method '%@', please check if you need to call this method", self.isAssignedValue ? @"setter" : @"getter", currentName];
0 commit comments