CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

DescriptionBuilder 0.0.2

DescriptionBuilder 0.0.2

TestsTested
LangLanguage Obj-CObjective C
License BSD
ReleasedLast Release Sep 2015

Maintained by wangrulin.



  • By
  • wrl

DescriptionBuilder (iPhone Utility Program)

DescriptionBuilder is helper class to make easier implementing NSObject description method, or dump all instance variables of any object.

  • Usage
- (NSString *)description {
    return [DescriptionBuilder reflectDescription:self];
}

or

- (NSString *)description {
    return [DescriptionBuilder reflectDescription:self style:DescriptionStyleMultiLine];
}