列挙型を処理するとき、メモリを管理する必要がありますか?これは、列挙型を宣言した場所です。これは別の.hファイルにありますこれは私が変数を宣言しようとする場所です
その後私はそのようなことをしなければなりませんか
// This is where I declared my enum type. It is in another .h file
typedef enum CardTypes
{
HEART = 1,
DIAMOND =2,
CLUB =3,
SPADE = 4
} CardType;
// This is where I attempt to declare variable
CardType cardType=SPADE;
//or
CardType cardType=malloc(size(CardType));
// After that Do I have o do something like that
[cardType release]
//or
free(&card)
Any help will be appreciated , thanks