利用 Runtime 来获取 NSObject 对象的所有属性

有时候在写 iOS 代码时,需要对系统的某些 UI 进行微调,但是系统往往没有提供直接的 API 能够访问,完全自定义又稍显繁琐,这时候我们可以通过更改私有属性的值来达到目的,那么如果获取到某个对象的私有属性呢?

直接上代码,对 NSObject 拓展一个打印所有属性的方法:

extension NSObject {
    
    class func printAllIvars() {
        var outCount: UInt32 = 0
        guard let ivars = class_copyIvarList(self, &outCount) else {
            return
        }
        for i in 0..

比如,通过一行代码UINavigationBar.printAllIvars()来获取 UINavigationBar 所有属性:

UINavigationBar属性: _stack
UINavigationBar属性: _delegate
UINavigationBar属性: _barTintColor
UINavigationBar属性: _appearanceStorage
UINavigationBar属性: _animationDisabledCount
UINavigationBar属性: _barStyle
UINavigationBar属性: _barTranslucence
UINavigationBar属性: _navControllerAnimatingContext
UINavigationBar属性: _visualProvider
UINavigationBar属性: _visualStyle
UINavigationBar属性: _axHUDGestureManager
UINavigationBar属性: _resolvedLayoutMargins
UINavigationBar属性: _shadowAlpha
UINavigationBar属性: _currentPushTransition
UINavigationBar属性: _navbarFlags
UINavigationBar属性: _wantsLetterpressContent
UINavigationBar属性: _prefersLargeTitles
UINavigationBar属性: __startedAnimationTracking
UINavigationBar属性: __useInlineBackgroundHeightWhenLarge
UINavigationBar属性: _alwaysUseDefaultMetrics
UINavigationBar属性: _barPosition
UINavigationBar属性: _requestedMaxBackButtonWidth
UINavigationBar属性: _accessibilityButtonBackgroundTintColor
UINavigationBar属性: _largeTitleTextAttributes
UINavigationBar属性: __overrideBackgroundExtension
UINavigationBar属性: _backgroundEffects
UINavigationBar属性: _requestedContentSize
UINavigationBar属性: __backgroundOpacity
UINavigationBar属性: __titleOpacity

拿到上述属性,从而可以通过 KVC 来轻易实现我们对系统控件的微调。

注意:这些只是 little trick,不建议大量使用,一旦系统升级,某些私有属性可能会更改,造成不必要的麻烦。

你可能感兴趣的:(利用 Runtime 来获取 NSObject 对象的所有属性)