博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 设置一行颜色不同的NSString 、剪切图片、设置TableView的自定义header
阅读量:6690 次
发布时间:2019-06-25

本文共 1339 字,大约阅读时间需要 4 分钟。

  hot3.png

需求:将字符串:请阅读下面相关内容,进行下一步请点击:同意  ,中"同意"二字设置为红色

NSMutableAttributedString *str=[[NSMutableAttributedString alloc]initWithString:@"请阅读下面相关内容,进行下一步请点击:同意"];//NSRange:要改变的位置    NSRange redRange=NSMakeRange([[str string]rangeOfString:@"同意"].location, [[str string]rangeOfString:@"同意"].length);//value  :要改变的颜色    [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:redRange];        [self.label setAttributedText:str];

需求:图片按规格剪切

UIImage *image1=[UIImage imageNamed:@"icon"];         CGRect frame = self.image1.bounds;//注意:这里是按照像素剪切,所以要在width 、height后面乘2    CGImageRef finalImgRef = CGImageCreateWithImageInRect(image1.CGImage, CGRectMake(0, 0, frame.size.width*2, frame.size.height*2));

需求:在每组TV的header位置添加自定义的UIView

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{    if (section==0) {        UIView *header =[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 100)];        header.backgroundColor=[UIColor redColor];        return header;    }else if(section==1){       Header *hview=[[[NSBundle mainBundle]loadNibNamed:@"header" owner:self options:nil]lastObject];    return hview;  }else{    return [UIView alloc];}}-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{    return 100;}//二者缺一不可

 

 

 

转载于:https://my.oschina.net/sgcllr/blog/793346

你可能感兴趣的文章
C# 如何防止重放攻击(转载)
查看>>
C#匿名类型
查看>>
ActiveMQ
查看>>
Nginx服务器部署 负载均衡 反向代理
查看>>
C++学习笔记:指向函数的指针
查看>>
Child Action
查看>>
# 2017-2018-1 20155319 实验五 《通讯协议设计》
查看>>
通用后台管理系统(1)-数据库设计
查看>>
做自适应网页
查看>>
ACM的奇计淫巧_bitset优化
查看>>
centos 配置防火墙操作
查看>>
比亚迪速锐F3专用夏季座套 夏天坐垫 四季坐套
查看>>
Java web 实现 之 Filter分析ip统计网站的访问次数
查看>>
bzoj1303
查看>>
2015.3.12 C#运用正则表达式点滴
查看>>
CSS布局自适应等分比例
查看>>
安装Git
查看>>
设置启动图片LaunchScreen 和 LaunchImage
查看>>
L84
查看>>
L157
查看>>