Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CCLabelTTFの色をGameConfig.hに次のように保存するにはどうすればよいですか。
#define kGameLabelColor ccc3(79,71,59);
;最後にを使わずに、GameConfig.hで定義します。
;
#define kGameLabelColor ccc3(79,71,59)
それを使用するには:
#import "GameConfig.h" ... [label setColor:kGameLabelColor];
アプリ全体のすべてのラベルの色をデフォルトで変更したい場合はinitWithString、CCLabelTTF.mのメソッドを変更して、を追加することを検討してくださいcolor_ = ccc3(79,71,59);。
initWithString
color_ = ccc3(79,71,59);