# import <UIKit/UIKit.h> typedef enum : NSInteger{ HeaderTitle = 0, NavigationMenu, TableCellName }BasicLabelName; @interface BasicLabel : UILabel - (id)initWithName:(BasicLabelName)name; @end # import "BasicLabel.h" @implementation BasicLabel - (id)initWithName:(BasicLabelName)name { self = [super init]; if (self) { switch (name) { case HeaderTitle:{ self.textColor = [UIColor colorWithRed:0.188 g
