Weakly Summary

本文讨论了在函数中避免修改全局变量的重要性,并提供了使用局部变量和返回视图的方法。同时,介绍了如何通过初始化方法正确设置文本视图链接字体,避免了直接修改全局变量的不当做法。

Should not modify global variable in function

If you have a function that returns a view, that’s great, but it should not, as a side product, modify a global variable. Functions should only change variables within their own scope and return a result.
The better way to code this is:

self.lockView = [self createLockView];
[self.view addSubview:self.lockView];
Globals are "bad" avoid them if you can. 

Apple 推荐使用

-(instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 

因为这个是designated initializer;

Change the font of UITextView’s linkTextAttributes

We only have access to change the font color of UITextView’s linkTextAttributes, if we’d like to change the font of the link, we should just add attribute to the attributedString, for example

textView.linkTextAttributes = @{NSForegroundColorAttributeName : [UIColor linkColor]}; 
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:text attributes:@{NSForegroundColorAttributeName : [UIColor defaultPanelBodyColor], NSFontAttributeName : [UIFont defaultPanelBodyFont]}]; 
[attributedString addAttributes:@{NSFontAttributeName : [UIFont linkTypeButtonFont]} range:linkRange];
[attributedString addAttributes:@{NSLinkAttributeName: kDefaultURL} range:linkRange];
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值