エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Objective-C property, synthesize Accessor Method の復習 - Qiita
@interface Example : NSObject /* Interface に @property を追加することで、implementation section ... @interface Example : NSObject /* Interface に @property を追加することで、implementation section に instance variable を宣言する必要がなくなる また、コンパイラーが自動で、implementation section に *x*, *y*, *setX*, *setY* をジェネレートしてくれる */ @property int x, y; - (void)print; @end #import "example.h" @implementation Example /* implementation に 以下のように @sythesize を追加すると instance variable x と y と統合してくれる @synthesize を指定しないで @property のみを inte
2014/05/06 リンク