123456789101112131415161718192021 |
- //
- // FBKVOController+Extension.h
- // homy
- //
- // Created by 翟玉磊 on 2018/11/9.
- // Copyright © 2018 翟玉磊. All rights reserved.
- //
- #import "FBKVOController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FBKVOController (Extension)
- - (void)fb_observe:(nullable id)object keyPath:(NSString *_Nullable)keyPath block:(FBKVONotificationBlock _Nullable )block;
- - (void)fb_observe:(nullable id)object keyPath:(NSString *_Nullable)keyPath action:(SEL _Nullable )action;
- @end
- NS_ASSUME_NONNULL_END
|