UILabel *label=[[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 200)];
label.backgroundColor=[UIColor yellowColor];
label.text=@"帳號";//不可更改文本
label.textColor=[UIColor greenColor];//給文本設置顏色
label.shadowColor=[UIColor redColor];//陰影顏色
label.textAlignment=NSTextAlignmentCenter;//文本文子居中
label.shadowOffset=CGSizeMake(2.0, 2.0);//陰影大小
label.font=[UIFont systemFontOfSize:25];//文本 大小調節
label.numberOfLines=4;//顯示行數;
label.lineBreakMode=NSLineBreakByWordWrapping;//一單詞換行
[self.window addSubview:label];app