NSDictionary+ObjcRuntime.h 459 B

12345678910111213141516171819
  1. //
  2. // NSDictionary+ObjcRuntime.h
  3. // FLEX
  4. //
  5. // Derived from MirrorKit.
  6. // Created by Tanner on 7/5/15.
  7. // Copyright (c) 2015 Tanner Bennett. All rights reserved.
  8. //
  9. #import <Foundation/Foundation.h>
  10. @interface NSDictionary (ObjcRuntime)
  11. /// \c kFLEXPropertyAttributeKeyTypeEncoding is the only required key.
  12. /// Keys representing a boolean value should have a value of \c @YES instead of an empty string.
  13. - (NSString *)propertyAttributesString;
  14. @end