typedef enum {
kA = 0,
kB,
kC,
kD,
kE,
kF
} index;
@interface myViewController : UITableViewController<UIAlertViewDelegate> {
index enumIndex;
}
Hi, guys.
I declare index which is composed by typedef enum. But I didn't found code like that. and If that code useful, does not need to release ?
I don't understand typedef enum in Objective C.
Please help me.