ios计算字符串宽高,指定字符串变色,获取URL参数集合
#import <Foundation/Foundation.h> @interface NSString (Extension) - (CGFloat)heightWithLimitWidth:(CGFloat)width
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes; - (CGFloat)widthWithLimitHeight:(CGFloat)height
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes; - (CGSize)sizeWithLimitSize:(CGSize)size
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes; - (CGRect)rectWithSize:(CGSize)size
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes; //属性字符串 指定子串变色
- (NSMutableAttributedString *)attributedStringWithcolor:(UIColor *)color subString:(NSString *)subString; // 属性字符串 指定子串变色 多处
- (NSMutableAttributedString *)attributedStringWithColorArray:(NSArray *)colorArray subStringArray:(NSArray *)subStringArray; //属性字符串 指定子串改变显示效果
- (NSMutableAttributedString *)attributedStringWithAttributeds:(NSDictionary *)attributeds subString:(NSString *)subString;
/**
转变指定字符串 @param regArray 正则表达式数组
@param attributeds 指定属性
@return 返回的可变字符串
*/
- (NSMutableAttributedString *)changeStringWithReg:(NSArray *)regArray attributeds:(NSDictionary *)attributeds; // 将url中的参数转为字典
- (NSMutableDictionary *)getURLParameters; /**
插入图片 @param images 图片数组
@param font 字体
@param span 间距
@return 结果
*/
-(NSMutableAttributedString *)attributedStringWithImages:(NSArray<UIImage *> *)images font:(UIFont *)font imageSpan:(CGFloat)span; @end
#import "NSString+Extension.h" @implementation NSString (Extension) - (CGFloat)heightWithLimitWidth:(CGFloat)width
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes { return [self rectWithSize:CGSizeMake(width, CGFLOAT_MAX)
fontSize:fontSize
otherAttributes:otherAttributes].size.height;
} - (CGFloat)widthWithLimitHeight:(CGFloat)height
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes { return [self rectWithSize:CGSizeMake(CGFLOAT_MAX, height)
fontSize:fontSize
otherAttributes:otherAttributes].size.width;
} - (CGSize)sizeWithLimitSize:(CGSize)size
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes { return [self rectWithSize:size
fontSize:fontSize
otherAttributes:otherAttributes].size;
} - (CGRect)rectWithSize:(CGSize)size
fontSize:(CGFloat)fontSize
otherAttributes:(NSDictionary *)otherAttributes { NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithDictionary:@{NSFontAttributeName:[UIFont systemFontOfSize:fontSize]}];
if (otherAttributes) {
for (NSString *aKey in otherAttributes.allKeys) {
id aValue = [otherAttributes objectForKey:aKey];
[dictionary setObject:aValue forKey:aKey];
}
} return [self boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:dictionary context:nil];
} - (NSMutableAttributedString *)attributedStringWithcolor:(UIColor *)color subString:(NSString *)subString
{
NSMutableAttributedString * attributedString = [[NSMutableAttributedString alloc] initWithString:self];
if (![subString isKindOfClass:[NSString class]] || !subString.length) {
return attributedString;
} NSRange range = [self rangeOfString:subString];
if (range.location != NSNotFound) {
[attributedString addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(range.location, range.length)];
}
return attributedString;
} - (NSMutableAttributedString *)attributedStringWithColorArray:(NSArray *)colorArray subStringArray:(NSArray *)subStringArray
{
NSMutableAttributedString * attributedString = [[NSMutableAttributedString alloc] initWithString:self];
NSInteger count = subStringArray.count;
if (count<2) {
return [self attributedStringWithcolor:colorArray[0] subString:subStringArray[0]];
} for (NSInteger i=0; i<count; i++) {
NSString *subString= subStringArray[i];
if (![subString isKindOfClass:[NSString class]] || !subString.length) {
return attributedString;
} NSRange range = [self rangeOfString:subString];
if (range.location != NSNotFound) {
[attributedString addAttribute:NSForegroundColorAttributeName value:colorArray[i] range:NSMakeRange(range.location, range.length)];
}
} return attributedString;
} - (NSMutableAttributedString *)attributedStringWithAttributeds:(NSDictionary *)attributeds subString:(NSString *)subString{ NSMutableAttributedString * attributedString = [[NSMutableAttributedString alloc] initWithString:self];
if (![subString isKindOfClass:[NSString class]] || !subString.length) {
return attributedString;
} NSRange range = [self rangeOfString:subString];
if (range.location != NSNotFound) { // [attributedString addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(range.location, range.length)];
[attributedString addAttributes:attributeds range:NSMakeRange(range.location, range.length)];
}
return attributedString;
} /**
转变指定字符串 @param regArray 正则表达式数组
@param attributeds 指定属性
@return 返回的可变字符串
*/
- (NSMutableAttributedString *)changeStringWithReg:(NSArray *)regArray attributeds:(NSDictionary *)attributeds{ NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:self];
for (int i=0; i<regArray.count; i++) { NSString *re = [regArray ty_ObjectWithIndex:i];
NSRegularExpression *regExp = [[NSRegularExpression alloc]initWithPattern:re
options:NSRegularExpressionDotMatchesLineSeparators
error:nil]; NSArray* match = [regExp matchesInString:self options:NSMatchingReportCompletion range:NSMakeRange(0, [self length])]; if (match.count != 0)
{
for (NSTextCheckingResult *matc in match)
{
NSRange range = [matc range]; [attr addAttributes:attributeds range:range];
}
} } return attr;
}
/**
插入图片 @param images 图片数组
@param font 字体
@param span 间距
@return 结果
*/
-(NSMutableAttributedString *)attributedStringWithImages:(NSArray<UIImage *> *)images font:(UIFont *)font imageSpan:(CGFloat)span{ NSMutableAttributedString *textAttrStr = [[NSMutableAttributedString alloc] init]; for (UIImage *img in images) { NSTextAttachment *attach = [[NSTextAttachment alloc] init];
attach.image = img;
CGFloat imgH = font.pointSize;
CGFloat imgW = (img.size.width / img.size.height) * imgH;
attach.bounds = CGRectMake(0, -2 , imgW, imgH); NSAttributedString *imgStr = [NSAttributedString attributedStringWithAttachment:attach];
[textAttrStr appendAttributedString:imgStr];
//标签后添加空格
[textAttrStr appendAttributedString:[[NSAttributedString alloc] initWithString:@" "]];
} [textAttrStr appendAttributedString:[[NSAttributedString alloc]initWithString:self]];
//设置间距
if (span != 0) {
[textAttrStr addAttribute:NSKernAttributeName value:@(span)
range:NSMakeRange(0, images.count * 2/*由于图片也会占用一个单位长度,所以带上空格数量,需要 *2 */)];
} return textAttrStr;
} - (NSMutableDictionary *)getURLParameters { // 查找参数
NSRange range = [self rangeOfString:@"?"];
if (range.location == NSNotFound) {
return nil;
} NSMutableDictionary *params = [NSMutableDictionary dictionary]; // 截取参数
NSString *parametersString = [self substringFromIndex:range.location + 1]; // 判断参数是单个参数还是多个参数
if ([parametersString containsString:@"&"]) { // 多个参数,分割参数
NSArray *urlComponents = [parametersString componentsSeparatedByString:@"&"]; for (NSString *keyValuePair in urlComponents) {
// 生成Key/Value
NSArray *pairComponents = [keyValuePair componentsSeparatedByString:@"="];
NSString *key = [pairComponents.firstObject stringByRemovingPercentEncoding];
NSString *value = [pairComponents.lastObject stringByRemovingPercentEncoding]; // Key不能为nil
if (key == nil || value == nil) {
continue;
} id existValue = [params valueForKey:key]; if (existValue != nil) { // 已存在的值,生成数组
if ([existValue isKindOfClass:[NSArray class]]) {
// 已存在的值生成数组
NSMutableArray *items = [NSMutableArray arrayWithArray:existValue];
[items addObject:value]; [params setValue:items forKey:key];
} else { // 非数组
[params setValue:@[existValue, value] forKey:key];
} } else { // 设置值
[params setValue:value forKey:key];
}
}
} else {
// 单个参数 // 生成Key/Value
NSArray *pairComponents = [parametersString componentsSeparatedByString:@"="]; // 只有一个参数,没有值
if (pairComponents.count == 1) {
return nil;
} // 分隔值
NSString *key = [pairComponents.firstObject stringByRemovingPercentEncoding];
NSString *value = [pairComponents.lastObject stringByRemovingPercentEncoding]; // Key不能为nil
if (key == nil || value == nil) {
return nil;
} // 设置值
[params setValue:value forKey:key];
} return params;
} @end
ios计算字符串宽高,指定字符串变色,获取URL参数集合的更多相关文章
- String的两个API,判断指定字符串是否包含另一字符串,在字符串中删除指定字符串。
// 在字符串中删除指定字符串. String phoneNum="1795112345"; phoneNum = phoneNum.replace("17951&quo ...
- java查找字符串里与指定字符串相同的个数
public class EmployeeDemo { //方法一: public int search(String str,String strRes) {//查找字符串里与指定字符串相同的个数 ...
- iOS xib View宽高不能改变
IOS - xib(Interface Builder,view) - can't change view size(view不能改变大小问题) 今天在试着swift语言写个demo,,当中遇到了这个 ...
- iOS - web自适应宽高(预设置的大小)
//web自适应宽高 -(void)webViewDidFinishLoad:(UIWebView *)webView { NSLog(@"wessd"); [ webView s ...
- Swift计算文本宽高
iOS 8 开始可以配合 AutoLayout 自动估算文本的高度,但是当 Cell 比较复杂的时候,还会需要手动去计算.首先声明一个样式 var TextStyle : [String : NSOb ...
- Js删除字符串中的指定字符串
案例一. 比如:原字符串 var StringFirst = "12:30:08"; 现在要删掉冒号,变成123008 就可以先split var splitFirst = Str ...
- js判断字符串是否以指定字符串开头或是否包含指定字符串
1. 用js判断一个字符串是否是以某个子字符串开头如:ssss001是否以ssss开头, 可以这样做: 1 2 3 4 5 6 var fdStart = strCode.indexOf(" ...
- iOS计算字符串的宽度高度
OC开发中会遇到根据字符串和字体大小来算计算出字符串所占的宽高->> 封装方法如下: #import <Foundation/Foundation.h> #import < ...
- 【IOS 开发】Objective-C Foundation 框架 -- 字符串 | 日期 | 对象复制 | NSArray | NSSet | NSDictionary | 谓词
一. 字符串 API 1. NSString 用法简介 (1) NSString API 介绍 NSString 功能 : -- 创建字符串 : 使用 init 开头的实例方法, 也可以使用 Stri ...
随机推荐
- TabLayout+ViewPager实现标签卡效果
转载请注明原文地址:http://www.cnblogs.com/yanyojun/p/8082391.html 代码已经上传至Github:https://github.com/YanYoJun/V ...
- 在Bootstrap中得模态框(modal)中下拉不能显示得问题
$.fn.modal.Constructor.prototype.enforceFocus = function () { $("#insertModal").on("s ...
- 读取.properties配置信息
package com.ctcti.webcallcenter.utils; import java.io.FileInputStream;import java.io.FileNotFoundExc ...
- PPTP的搭建
一.准备 1.检查是否支持pptp modprobe ppp-compress-18 && echo yes yes支持 2.是否开启tun cat /dev/net/tun 返回ca ...
- PHP常量和数据类型考察点
PHP 常量 常量是单个值的标识符(名称).在脚本中无法改变该值. 有效的常量名以字符或下划线开头(常量名称前面没有 $ 符号). 注释:与变量不同,常量贯穿整个脚本是自动全局的. PHP常量的两种定 ...
- leetcode_650. 2 Keys Keyboard_dp
https://leetcode.com/problems/2-keys-keyboard/ 初始一个A,两种操作,复制当前所有A,粘贴,问得到n个A最少需要多少步操作. class Solution ...
- MySQL for Mac 终端操作说明
mysql for mac 终端操作说明MySQL服务开启Mac版mysql可以从设置里启动服务: 如果想要在终端(Terminal)中操作mysql,需要先添加mysql路径,在此以zsh为例: # ...
- clusterdb - 对一个PostgreSQL数据库进行建簇
SYNOPSIS clusterdb [ connection-option...] [ --table | -t table] [ dbname] clusterdb [ connection-op ...
- CAD参数绘制样条线(com接口)
在CAD设计时,需要绘制样条线,用户可以设置样条线线重及颜色等属性. 主要用到函数说明: _DMxDrawX::PathLineTo 把路径下一个点移到指定位置.详细说明如下: 参数 说明 DOUBL ...
- count() 方法
count() :方法用于统计字符串里某个字符出现的次数.可选参数为在字符串搜索的开始与结束位置. num1,num2 = input('请输入字符串:'),input('请输入要查询的子串:') p ...