我没有声望发布图像所以here is a link.如果链接不起作用,请提前抱歉.
我正在使用UICollectionVIEw,文本是UILabel,这是我的标签代码:
UILabel *nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(8.0f,4.0f,135.0f,36.0f)]; nameLabel.numberOflines = 2; nameLabel.lineBreakMode = NSlineBreakByTruncatingTail; nameLabel.text = _name; nameLabel.Font = [UIFont FontWithname:@"STHeitiSC-Medium" size:15.0f]; [nameLabel sizetoFit]; nameLabel.textcolor = [UIcolor whitecolor]; [purpleMask addSubvIEw:nameLabel];
有没有人遇到过这种问题?
解决方法 添加这样的东西:NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:@"Presenting the great..."];[string addAttribute:NSFontAttributename value:[UIFont systemFontOfSize:20.0] range:NSMakeRange(24,11)]; nameLabel.attributedText = string;总结
以上是内存溢出为你收集整理的ios – UILabel文本truncatingtail圆点颜色全部内容,希望文章能够帮你解决ios – UILabel文本truncatingtail圆点颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)