NSObject+CoreExtension.h 476 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NSObject+Extension.h
  3. // TUIRoomKit
  4. //
  5. // Created by WesleyLei on 2022/9/23.
  6. // Copyright © 2022 Tencent. All rights reserved.
  7. //
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface NSObject (CoreExtension)
  10. + (NSString *)getRoomEngineKey;
  11. + (NSString *)getRoomInfoKey;
  12. + (NSString *)getLocalUserInfoKey;
  13. + (NSString *)getTopViewKey;
  14. + (NSString *)getBottomViewKey;
  15. + (NSString *)getUserListControllerKey;
  16. + (NSString *)getExtensionControllerKey;
  17. @end
  18. NS_ASSUME_NONNULL_END