时间:2021-05-02
前言
我们在开发过程中会遇到这样的需求。用户注册,或者做些其他操作的时候我们需要在下方加上这样一段话:注册代表你遵守我们的《用户协议》,《隐私条款》这两个是链接,那么接下来我们改怎么做呢,下面来一起看看详细的介绍:
先上图再说话
实现方法
如果我们按照平常的想法在label上面显示文字,然后给label加上手势也可以实现,那么链接多的话,你就要判断点击手势的区域,感觉麻烦,那么苹果给我们提供了很好的方法富文本nsmutableattributedstring。
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 uitextview *textview = [[uitextview alloc] initwithframe:cgrectmake(0, 100, 375, 100)]; textview.backgroundcolor = [uicolor cyancolor]; //创建初始化文本的颜色,以及字体大小 nsdictionary *dictionary = @{nsfontattributename:[uifont systemfontofsize:17],nsforegroundcolorattributename:[uicolor yellowcolor]}; nsstring * string = @" 跳转到百度\n\n 跳转到简书"; //创建富文本 nsmutableattributedstring *attributestr = [[nsmutableattributedstring alloc] initwithstring:string attributes:dictionary]; //实现文本链接 [attributestr addattribute:nslinkattributename value:@"http://www.jianshu.com" range:[string rangeofstring:@"简书"]]; [attributestr addattribute:nslinkattributename value:@"http://www.baidu.com" range:[string rangeofstring:@"百度"]]; // textview.tintcolor = [uicolor redcolor];//调节文本链接字体的颜色 textview.attributedtext = attributestr; textview.editable = no;上面的方法基本事件点击点解跳转的功能,当然你也可以遵守textview的delegate在
? 1 2 3 4 - (bool)textview:(uitextview *)textview shouldinteractwithurl:(nsurl *)url inrange:(nsrange)characterrange return yes; }代理方法里面做你想要的操作,可是呢,有时后文字是分条显示的 第一条,第二条,但是又不让用文字,而是用上面的小点图片显示的,这就需要插入图片了
? 1 2 3 4 5 6 7 8 9 //文本插入图片 nstextattachment *attachment = [[nstextattachment alloc] init]; attachment.image = [uiimage imagenamed:@"red_2"]; //图片大小不合适 可以调整 attachment.bounds = cgrectmake(0, 0, 8, 8); nsmutableattributedstring *attachmentstring = (nsmutableattributedstring *)[nsattributedstring attributedstringwithattachment:attachment]; //你想要插入图片的位置 [textview.textstorage insertattributedstring:attachmentstring atindex:0]; [textview.textstorage insertattributedstring:attachmentstring atindex:10];富文本里面还有好多东西,有兴趣的小伙伴可以研究一下
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://www.jianshu.com/p/6b018d9895a4
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
锚文本:又称锚文本链接,是链接的一种形式。和超链接类似,超链接的代码是锚文本,把关键词做一个链接,指向别的网页,这种形式的链接就叫作锚文本。外建博客为网站添加锚
建议一:利用图片做链接我们除了纯文本链接和锚文本链接,还有什么好的链接么?有的。网站建公司国人在线给你个好建议:利用图片做链接。我们可以在站内做图片内链,也可以
python合并文本文件示例代码。python实现两个文本合并employee文件中记录了工号和姓名catemployee.txt:100JasonSmith2
(以下方法最好是在中进行操作,而且需要懂一些html代码)添加关注链接的方法:在文字上添加,代码如下点我关注在图片上添加,分为两种1.直接在图片上添加,代码如下
今天我想和大家分享一个关于链接的问题。网页中哪些链接更有价值:导航中的链接?还是内容中的链接?还是页脚上的链接?现在,如果其中一个内容链接是图片,另一个是文本?