Guest User

Untitled

a guest
Jan 14th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. /**
  2. * Foo.h
  3. */
  4. @interface Foo
  5. // プロパティを使うのでインスタンス変数は省略する
  6.  
  7. // ここでは外部から触られても書き込みできないようにreadonlyにする
  8. @property (readonly, retain) NSString *str;
  9.  
  10. @end
  11.  
  12.  
  13. /**
  14. * Foo.m
  15. */
  16. // 無名カテゴリを使ったプライベートな宣言部分
  17. @interface Foo ()
  18.  
  19. // ここでは内部から書き込みができるようにreadwriteにする
  20. @property (readwrite, retain) NSString *str;
  21.  
  22. @end
  23.  
  24. // 実装部分
  25. @implementation Foo
  26.  
  27. @synthesize str = _str;
  28.  
  29. @end
Add Comment
Please, Sign In to add comment