如下
#import "UIView+WaterMark.h"
@implementation UIView (WaterMark)
-(void)addWaterMarkText:(NSString*)waterText WithTextColor:(UIColor*)color WithFont:(UIFont*)font{
//計算水印文字的寬高
NSString *waterMark = waterText;
CGSize textSize = [waterMark sizeWithAttributes:@{NSFontAttributeName:font}];
CGFloat height = [UIScreen mainScreen].bounds.size.height;
CGFloat width = [UIScreen mainScreen].bounds.size.width;
NSInteger line = height*3.5/80; //多少行
NSInteger row = 20;
for (int i = 0; i < line; i ++) {
for (int j = 0; j < row; j ++) {
CATextLayer *textLayer = [[CATextLayer alloc]init];
textLayer.contentsScale = [UIScreen mainScreen].scale;//按當前螢屏分辨顯示,否則會模糊
CFStringRef fontName = (__bridge CFStringRef)font.fontName;
CGFontRef fontRef =CGFontCreateWithFontName(fontName);
textLayer.font = fontRef;
textLayer.fontSize = font.pointSize;
textLayer.foregroundColor = color.CGColor;
textLayer.string = waterMark;
textLayer.frame = CGRectMake(j*(textSize.width+30), i*60, textSize.width, textSize.height);
//旋轉文字
textLayer.transform = CATransform3DMakeRotation(-M_PI/5, 0,0,3);
[self.layer addSublayer:textLayer];
}
}
}
@end
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/211647.html
標籤:java
上一篇:基于AndroidStudio的資料存盤(SharedPreferences存盤)的簡單應用
下一篇:A. Magic Numbers
