NSString+YYAdd
-(CGSize)sizeForFont:(UIFont *)font size:(CGSize)size mode:(NSLineBreakMode)lineBreakMode;
这个方法的作用就是返回给定的字符串边界的宽度和高度。这里size参数的意思是字符串的最大可接受大小。 此值用于计算行会发生断裂和换行的位置。
mode:NSLineBreakByWordWrapping
该方法的作用就是返回一行指定字体的字符串的宽度。
-(CGFloat)widthForFont:(UIFont *)font;
正则
- (BOOL)matchesRegex:(NSString *)regex options:(NSRegularExpressionOptions)options;
使用:
NSString *str = @"A";
BOOL isMatch = [str matchesRegex:@"B" options:NSRegularExpressionCaseInsensitive];
NSLog(@"是否匹配 = %d", isMatch);
NSRegularExpressionCaseInsensitive = 1 << 0, // 不区分大小写的
NSRegularExpressionAllowCommentsAndWhitespace = 1 << 1, // 忽略空格和# -
NSRegularExpressionIgnoreMetacharacters = 1 << 2, // 整体化
NSRegularExpressionDotMatchesLineSeparators = 1 << 3, // 匹配任何字符,包括行分隔符
NSRegularExpressionAnchorsMatchLines = 1 << 4, // 允许^和$在匹配的开始和结束行
NSRegularExpressionUseUnixLineSeparators = 1 << 5, // (查找范围为整个的话无效)
NSRegularExpressionUseUnicodeWordBoundaries = 1 << 6 // (查找范围为整个的话无效)
};
typedef NSUInteger NSRegularExpressionOptions;