Person.h 470 B

1234567891011121314151617181920212223
  1. //
  2. // Person.h
  3. // UICatalog
  4. //
  5. // Created by Tanner on 4/17/19.
  6. // Copyright © 2019 f. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface Person : NSObject <NSCoding>
  10. + (instancetype)bob;
  11. @property (nonatomic, readonly) NSString *name;
  12. @property (nonatomic, readonly) NSInteger age;
  13. @property (nonatomic, readonly) CGFloat height;
  14. @property (nonatomic, readonly) NSNumber *numberOfKids;
  15. @property (nonatomic) NSDecimalNumber *netWorth;
  16. @end