问题描述
- IOS中UILabel里面有中文和英文
- UILabel *nameLabel1 = [[UILabel alloc] initWithFrame:CGRectMake(90 80 180 150)];
nameLabel1.text = @""丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁丁wwwwwwwwwwwwwwww丁"";
nameLabel1.font = [UIFont systemFontOfSize: 15];
[nameLabel1 setNumberOfLines:0];
nameLabel1.backgroundColor = [UIColor clearColor];
nameLabel1.textColor = [UIColor blackColor];
[self.view addSubview:nameLabel1];这里有一个问题,当遇到一串英文时,虽然上一行有很多的空间,但是会换行,有什么处理方法,让它在英文的地方不换行?
解决方案
设置他的lineBreakMode属性
时间: 2024-09-22 01:24:56