Guest User

Untitled

a guest
Jul 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // in the .h
  2. @interface Foo : NSObject
  3. @property (nonatomic, readonly) id bar;
  4. @end
  5.  
  6. // in the .m
  7. @interface Foo (private)
  8. @property (nonatomic, readwrite) id bar;
  9. @end
  10.  
  11. @implementation Foo
  12. @synthesize bar;
  13. @end
Add Comment
Please, Sign In to add comment