判断某个类是自定义类还是系统的类

直接判断没有找到方法,只能曲线救国,通过判断某个类在不在沙盒中来间接判断是否为系统的类

如果在沙盒中就代表是自定义的类


方法如下:

NSBundle *bundle1 = [NSBundle bundleForClass:[TestObject class]];
     if (bundle1 == [NSBundle mainBundle]) {
     NSLog(@"自定义的类");
     } else {
     NSLog(@"系统的类");
     }
    
    NSBundle *bundle2 = [NSBundle bundleForClass:[UIView class]];
    if (bundle2 == [NSBundle mainBundle]) {
        NSLog(@"自定义的类");
    } else {
        NSLog(@"系统的类");
    }


打印结果为:

自定义的类

系统的类

你可能感兴趣的:(iOS小知识)