私は他のオブジェクトでそれらを使用する際に私が個人的に作ったいくつかのメソッドを隠したいと思います。カスタムクラスのいくつかのメソッドを非表示にするにはどうすればいいですか?
どのようにこれらのメソッドを非表示にできますか? '.h'(ヘッダーファイル)で定義しないと、これは可能ですか?
[.Hヘッダファイルの一部]
- (void) sequence1; //<= For example, I would like to hide it.
- (void) sequence2;
- (void) sequence3;
- (void) sequence4;
- (void) sequence5;
- (void) sequence6;
- (void) mcpSelect;
- (void) replay;
- (void) myTurn;
- (IBAction)kaPressed:(id)sender;
- (IBAction)baPressed:(id)sender;
- (IBAction)boPressed:(id)sender;
あなたは素晴らしいです.. –
あなたは、すなわち '@interface uvSecondScreenを()'名を省略した場合は、拡張子を取得します。メリットは、宣言されたメソッドが.mファイルのそのクラスの '@ implementation'セクションに実装されていないと、teコンパイラがエラーを発することです。 –