我有两个类,A 类和 B 类。它们都可以在控制器中调用相同的方法。他们调用的方法需要一个CGPoint
. 有什么方法可以确定论点来自哪个类?
我尝试过使用以下内容:
if ([point isKindOfClass:[_territoryPaths class]])
{
NSMutableDictionary *territoryPaths = [_territoryPaths territoryPaths];
}
if ([piont class] == [_territoryPaths class])
{
NSMutableDictionary *territoryPaths = [_territoryPaths territoryPaths];
}
point
是CGPoint
该方法所采用的。