Person.h 420 B

123456789101112131415161718192021
  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. @end