【UILabel 自动换行】

来源:互联网 发布:淘宝 老王代写 编辑:程序博客网 时间:2024/05/22 00:38
【UILabel 自动换行】: 
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(10, 100, 300, 180)]; 
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 300, 150)]; 
    label.text = @"where are you? where are you? where are you? where are you? where are you? where are you? where are you? where are you? where are you? where are you?"; 
    //清空背景颜色 
    label.backgroundColor = [UIColor clearColor]; 
    //设置字体颜色为白色 
    label.textColor = [UIColor whiteColor]; 
    //文字居中显示 
    label.textAlignment = UITextAlignmentCenter; 
    //自动折行设置 
    label.lineBreakMode = UILineBreakModeWordWrap; 
    label.numberOfLines = 0; 
0 0
原创粉丝点击