E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
initWithString
iOS 搜索字符串中字符 高亮显示 2015-04-28
NSMutableAttributedString*)colorData:(NSString*)withStr{NSMutableAttributedString*dataStr=[[NSMutableAttributedStringalloc]
initWithString
blaze冰叔
·
2024-02-04 15:11
iOS 获取UILabel每行的字符串
width{if(self.text==nil){returnnil;}NSMutableAttributedString*attStr=[[NSMutableAttributedStringalloc]
initWithString
sergeant
·
2024-01-24 05:30
NSString内存分配,以及深拷贝与浅拷贝
.@“”和
initWithString
:方法生成的字符串分配在常量区,系统自动管理内存;(
initWithString
不建议使用了,跟直接赋值一样,略显多余了)2.initWithFormat:和stringWithFormat
54番茄
·
2024-01-20 18:36
iOS 获取网页html(NSStringEncoding)编码失败
通过网页地址获取html失败NSURL*url=[[NSURLalloc]
initWithString
:str];NSError*error;NSString*xml=[NSStringstringWithContentsOfURL
ShouldChang
·
2024-01-01 07:23
富文本的使用
具体用法如下NSString*str=@"看着“图片”图标闪烁";NSMutableAttributedString*attriStr=[[NSMutableAttributedStringalloc]
initWithString
简单的孤寂
·
2023-12-29 01:03
IOS中对UILabel设置行间距或者字间距,根据内容计算高度
////设置label的行间距NSMutableAttributedString*attributedString=[[NSMutableAttributedStringalloc]
initWithString
幽玄727
·
2023-12-28 05:04
[macOS开发]NSTextField实现蓝色字体及下划线
最终效果image.png解决方案//标签文字都是蓝色且带下划线NSMutableAttributedString*linkAttrStr=[[NSMutableAttributedStringalloc]
initWithString
拳战攻城师
·
2023-12-05 19:37
可变字符串高亮加点击
;NSMutableAttributedString*one=[[NSMutableAttributedStringalloc]
initWithString
:text];/***设置整段文本size*/
aven_kang
·
2023-12-04 16:28
ios 富文本改颜色
NSMutableAttributedString*attribut=[[NSMutableAttributedStringalloc]
initWithString
:str];//目的是想改变‘/’前面的字体的属性
biubiuboom
·
2023-11-29 10:36
关于NSString跟NSArray创建的一些问题
NSString创建NSString*str1=@"123";NSString*str2=[NSStringstringWithString:str1];NSString*str3=[[NSStringalloc]
initWithString
CodingEleven
·
2023-11-24 09:47
iOS 自定义属性 attribute
//注册协议NSMutableAttributedString*attributedString=[[NSMutableAttributedStringalloc]
initWithString
:@"我已阅读并同意
renmeijuan
·
2023-11-11 06:27
iOS
自定义属性
attribute
iOS
自定义属性
attribute
NSString 的引用计数
分配在常量区的时候retainCount=2的32次方-1(不在遵循引用规则)NSString*str1=@"haha";[str1retain];NSString*str2=[[NSStringalloc]
initWithString
Lucky_1122
·
2023-11-01 02:24
iOS字符串的各种用法(字符串插入、字符串覆盖、字符串截取、分割字符串)
【字符串插入】NSMutableString*str1=[[NSMutableStringalloc]
initWithString
:@"hello"];//存在堆区,可变字符串NSLog(@"str1:
zmjchuan
·
2023-10-27 22:40
MacOS NSTextView实现富文本协议点击
即:富文本NSMutableAttributedString*abs=[[NSMutableAttributedStringalloc]
initWithString
:str];//定义的富文本协议,后续代理中触发
devileatapple
·
2023-10-21 16:42
ios知识总结
1、设置UILabel行间距NSMutableAttributedString*attrString=[[NSMutableAttributedStringalloc]
initWithString
:label.text
踏平9天下
·
2023-10-15 02:13
iOS TextField中placeholder颜色设置
NSForegroundColorAttributeName:[UIColorblackColor]};textField.attributedPlaceholder=[[NSAttributedStringalloc]
initWithString
LoveBe
·
2023-10-09 13:40
开发小技巧(持续更新)
NSMutableDictionary*params=[[NSMutableDictionaryalloc]init];NSURLComponents*urlComponents=[[NSURLComponentsalloc]
initWithString
iPhone贴膜小哥
·
2023-10-04 04:42
NSTextAttachment图文混排
富文本NSString*message=@"我是郝高明,外号小胖,哈哈~";NSMutableAttributedString*str=[[NSMutableAttributedStringalloc]
initWithString
絮语时光杨
·
2023-09-25 03:17
Objective-C 字面量的内存管理
起因:__auto_type__weakwStr=@"123";__auto_type__weakowStr=[[NSStringalloc]
initWithString
:@"onetwothree"]
AirChen
·
2023-09-22 17:14
IOS富文本文字属性
一、设置字体属性(NSFontAttributeName)NSMutableAttributedString*textFont=[[NSMutableAttributedStringalloc]
initWithString
lylzd
·
2023-09-20 09:21
iOS UITextView文本高度计算
二、代码-(CGFloat)getStringHeight:(NSString*)text{NSAttributedString*str=[[NSAttributedStringalloc]
initWithString
依然范特茜
·
2023-09-17 08:39
ios开发
ios
objective-c
xcode
iOS UITextView---NSAttributedString/NSMutableAttributedStrings使用
NSAttributedString同时设置富文本行间距NSString*text=@"string";NSAttributedString*textStr=[[NSAttributedStringalloc]
initWithString
fankang
·
2023-09-11 19:05
iOS 下划线不显示问题
NSMutableAttributedString*att=[[NSMutableAttributedStringalloc]
initWithString
:@"如何快速收集"];[attaddAttributes
ONE2
·
2023-09-10 10:33
iOS CFStringTransform汉字转拼音
chineseCharacterString=@"我爱我的祖国";if(chineseCharacterString.length>0){NSMutableString*sb=[[NSMutableStringalloc]
initWithString
我喝多了
·
2023-09-04 17:54
字符串引用计数详解
1.当使用字符串常量生成NSString对象,例如字面量、+stringWithString:、-
initWithString
:方法时,生成的NSString对象为__NSCFConstantString
SmallHer
·
2023-09-01 02:13
cell的高度动态计算问题
NSMutableAttributedString*attributedString1=[[NSMutableAttributedStringalloc]
initWithString
:item.content
石卒2018
·
2023-08-25 14:47
iOS富文本设置文字间隔,部分文字上移
983元";NSIntegerlength=number.length-1;NSMutableAttributedString*str=[[NSMutableAttributedStringalloc]
initWithString
码农天后
·
2023-08-21 06:36
iOS
objective-c
iOS
富文本
iOS
富文本设置文字间距
iOS富文本设置文字位置
改变输入字符串的颜色
NSStringstringWithFormat:@"天气:%@",,strStaus];NSMutableAttributedString*attrDescribeStr=[[NSMutableAttributedStringalloc]
initWithString
架构师的一小步
·
2023-08-06 13:27
自己搜集的iOS开发经验总结
1、设置UILabel行间距NSMutableAttributedString*attrString=[[NSMutableAttributedStringalloc]
initWithString
:label.text
学iOS也不会取名字
·
2023-07-30 02:07
给字符串中的链接添加颜色及下划线
)attributedString:(NSString*)text{NSMutableAttributedString*string=[[NSMutableAttributedStringalloc]
initWithString
叫我小哥哥
·
2023-07-25 01:29
计算文字宽高
:[UIFontsystemFontOfSize:12]}];NSMutableAttributedString*attString=[[NSMutableAttributedStringalloc]
initWithString
麻辣香锅加特辣
·
2023-07-23 16:53
Label 不定高 行高
Label不定高行高//动态计算高度NSMutableAttributedString*attributedString=[[NSMutableAttributedStringalloc]
initWithString
iOS界的古天乐
·
2023-07-19 20:13
2019-01-07
;NSMutableAttributedString*attStr=[[NSMutableAttributedStringalloc]
initWithString
:textStrattributes:@
Nulll
·
2023-06-24 09:43
iOS中三方字体的使用
.png2.在info.plist文件中添加step2.png3.使用字体NSMutableAttributedString*str=[[NSMutableAttributedStringalloc]
initWithString
航行_iOS
·
2023-06-20 04:37
iOS开发之NSMutableParagraphStyle富文本
一、实例化方法和使用方法NSMutableAttributedString*detailStr=[[NSMutableAttributedStringalloc]
initWithString
:detailString
旭日猎鹰
·
2023-06-17 08:12
iOS开发
iOS textField 水印字体大小 颜色设置 ..Button 字体换行
NSString*holderText=@"请输入原密码";NSMutableAttributedString*placeholder=[[NSMutableAttributedStringalloc]
initWithString
WS_0909
·
2023-04-21 19:53
UILabel的一些小应用
layoutSubviews{[superlayoutSubviews];NSMutableAttributedString*attributedString=[[NSMutableAttributedStringalloc]
initWithString
_ZhangJ
·
2023-04-14 13:40
iOS 动态计算Label高度(自适应高度) 可设置行间距
//动态计算高度NSMutableAttributedString*attributedString=[[NSMutableAttributedStringalloc]
initWithString
:self.contentL.text
iOS门三闫
·
2023-04-02 19:53
NSString用copy和Strong修饰的区别
@property(nonatomic,strong)NSString*strongString;NSMutableString*mString=[[NSMutableStringalloc]
initWithString
aven_kang
·
2023-04-01 00:57
iOS copy,strong,retain,weak和assign的区别
A=C其实是在内存中创建了一个A,然后又开辟了一个内存C,C里面存放的着值Bimage.png如下:NSMutableString*tempMStr=[[NSMutableStringalloc]
initWithString
tanghaiyang
·
2023-03-30 01:01
YYText识别链接和点击事件
NSMutableAttributedString*attrStr=[[NSMutableAttributedStringalloc]
initWithString
:@"这里传入富文本"];;//匹配条件
天马行空得想法
·
2023-03-26 00:49
iOS 富文本
哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈\n哈哈哈哈哈哈哈哈哈哈";NSMutableAttributedString*attStr=[[NSMutableAttributedStringalloc]
initWithString
LoveBe
·
2023-03-23 11:27
iOS PDF文件链接地址转化成UIImage保存的相册
dzfp.jsjinfo.cn:8080/SSMInvoice/uploads/FPXZ/20200707_011002000111_09946296.pdf";NSURL*url=[[NSURLalloc]
initWithString
水晶屋_Crystal
·
2023-03-22 04:59
牛客网 iOS 题 66-89
+requestWithURL:-initWithURL+URLWithString-
initWithString
答案:3,41是URLRequest的构造函数2是其他很多类的初始化方法3,4是构造URL
iOS佥
·
2023-03-22 03:05
解决使用NSMutableAttributedString 设置不一样字体,文字不能居中对齐
NSMutableAttributedString设置不一样字体inta=50;intb=10;NSMutableAttributedString*attStr=[[NSMutableAttributedStringalloc]
initWithString
kangomake
·
2023-03-20 22:40
iOS textfield placeholder
placeholder字体颜色以及大小NSMutableAttributedString*attributedPlaceholder=[[NSMutableAttributedStringalloc]
initWithString
蝉始鸣
·
2023-03-18 20:51
iOS8.3使用\n换行问题
关键代码:NSAttributedString*spaceAttr=[[NSAttributedStringalloc]
initWithString
:@"\n"];//8.3在\n后加空格解决换行不显示问题
吾乃常山赵子龙
·
2023-03-15 04:14
富文本 iOS swift OC
textfont:(UIFont*)font{NSMutableAttributedString*mutableAttributedString=[[NSMutableAttributedStringalloc]
initWithString
夙愿_618f
·
2023-02-06 01:36
NSString 的内存管理
于是把它记录下来先看下这几个测试代码,关于NSString:NSString*a=@"abc";NSString*b=[[NSStringalloc]init];NSString*c=[[NSStringalloc]
initWithString
麦子_KB
·
2023-02-01 13:49
设置Label部分字体颜色和大小
phoneNumber];_subtitleLabel.text=str;NSMutableAttributedString*attr=[[NSMutableAttributedStringalloc]
initWithString
U_Train_I
·
2023-01-31 13:42
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他