Hopper里面为什么找不到CLLocationManager的信息?

http://developer.limneos.net/?ios=10.2&framework=CoreLocation.framework&header=CLLocationManager.h
我在这看到这个类是对应的/System/Library/Frameworks/CoreLocation.framework/CoreLocation
我在hopper里打开设备上拷出来的dy_shared_cache,选择CoreLocation.
然后进去搜CLLocationManager,结果只有一个

后来我又试了在cycript里用_ivarDescription() .toString () 来打印信息
\t_internal (id): <CLLocationManagerInternal: 0x100410cb0>
看到这个内部实现类CLLocationManagerInternal,在hopper里也搜不到
这是怎么回事啊?

虽然不知道为什么,但是事实应该是被隐藏了。
我在字符串的区域里面找到了一系列关于CLLocationManager的函数。

21e0ba58         db         "-[CLLocationManager startUpdatingLocation]", 0     ; DATA XREF=sub_21da6dec+624, sub_21da6dec+628, sub_21da6dec+632

这个后面对应的就是原来的的方法实现

dladdr不是能找么