作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从https://github.com/honcheng/RTLabel使用RTLabel
我需要使用文本中的链接,我使用:
moreInfoString = [NSString stringWithFormat:@"%@ <a href='%@'>%@</a>", text, httpReferense, title];
RTLabel *descriptionSourceLabel = [[RTLabel alloc] init];
descriptionSourceLabel.backgroundColor = [UIColor clearColor];
descriptionSourceLabel.delegate = self;
[descriptionSourceLabel setText:moreInfoString];
最佳答案
linkAttributes
属性可用于链接的自定义样式。如果将linkAttributes
设置为空字典,则不会设置链接的样式。
// Remove all link styles
descriptionSourceLabel.linkAttributes = @{};
// To change only i.e. link color
descriptionSourceLabel.linkAttributes = @{@"color": @"red"};
关于ios - RTLabel问题(粗体链接),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19675097/
下面是我用来制作 1px 文本描边轮廓的代码。但是如何使轮廓变粗呢?如果我只是用“5px”替换所有“1px”,结果看起来很疯狂。 HTML Hello! CSS .element { color:
我是一名优秀的程序员,十分优秀!