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;
}
本文标题:判断 NSProxy 子类
本文链接:https://www.haomeiwen.com/subject/qrdvdxtx.html
网友评论