ios 绘制字符串
绘制字符串:
- (void)drawRect:(CGRect)rect {
NSString *str = @"这是一段用于测试的文字这是一段用于测试的文字这是一段用于测试的文字这是一段用于测试的文字这是一段用于测试的文字这是一段用于测试的文字";
NSMutableDictionary *dic = [NSMutableDictionary dictionary];
dic[NSFontAttributeName] = [UIFont systemFontOfSize:18];
dic[NSForegroundColorAttributeName] = [UIColor redColor];
dic[NSBackgroundColorAttributeName] = [UIColor greenColor];
//高度 给一个尽量大的值 ,该方法返回的frame中的高度,会根据宽度计算实际的高度,也就是说返回的矩形中的高度,是实际应该使用的高度
CGRect textFrame = [str boundingRectWithSize:CGSizeMake(200, 999) options:NSStringDrawingUsesLineFragmentOrigin attributes:dic context:nil];
NSLog(@"%@",NSStringFromCGRect(textFrame));
CGFloat height = textFrame.size.height;
//绘制矩形
UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRect:CGRectMake(50, 50, 200, height)];//画矩形
[[UIColor yellowColor]setFill];
[bezierPath fill];
//绘制字符串
[str drawInRect:CGRectMake(50, 50, 200, height) withAttributes:dic];//在矩形上画字
// [str drawAtPoint:CGPointMake(50, 50) withAttributes:dic];
}
成功的三大原则:
1、坚持
2、不要脸
3、坚持不要脸