NSProxy 的子类
不可 使用isKindOfClass:
使用
- (BOOL)isProxyClass:(id)obj {
if ([obj isProxy]) {
NSLog(@"obj is kind of NSProxy");
return YES;
}
NSLog(@"obj is kind of NSObject");
return NO;
}
NSProxy 的子类
不可 使用isKindOfClass:
使用
- (BOOL)isProxyClass:(id)obj {
if ([obj isProxy]) {
NSLog(@"obj is kind of NSProxy");
return YES;
}
NSLog(@"obj is kind of NSObject");
return NO;
}