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
NSRange
NSString 的 compare 方法
(NSComparisonResult)compare:(NSString*)stringoptions:(NSStringCompareOptions)maskrange:(
NSRange
)compareRangelocale
华楠
·
2017-12-04 21:38
修改UITextField输入字符颜色
Range:NSMakeRange(0,6)];-(NSMutableAttributedString*)changePlaceholderColorwith:(NSString*)strRange:(
NSRange
路这么长
·
2017-12-04 13:34
iOS小技巧总结
随时可用阿拉伯数字转中文格式阿拉伯数字转中文格式UITextField每四位加一个空格,实现代理-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
萌小奇
·
2017-12-04 05:02
swift textField 每四位加一个空格
UITextFieldDelegate{//当文本变化时调用functextField(textField:UITextField,shouldChangeCharactersInRangerange:
NSRange
晓蜻蜓
·
2017-12-04 03:58
UItextFiele每隔4个字符空格算法
pragmamark-UITextFieldDelegate-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
JasonEVA
·
2017-12-03 02:54
Swift--CoreText
AttribuedStringAttribuedString对象包含很多的属性,每一个属性都有其对应的字符区域,使用
NSRange
来进行描述的。
DevKyle
·
2017-11-27 04:14
ios中文字符最大长度的限制
解决:—(BOOL)textField:(RCTTextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
godot520
·
2017-11-06 15:46
textField和textView限制字数输入方法
UITextFieldDelegate的代理方法中可以限制输入-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
旭日猎鹰
·
2017-10-30 17:00
限制提现的金额
-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
阶梯
·
2017-10-24 10:50
ios OC 输入框禁止输入空格/去掉空格/只能输入字母和数字
输入框禁止输入空格遵循UITextField的代理方法实现代理方法-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
墨竹轩客
·
2017-10-13 11:46
ios金额输入小数点等问题
-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
我想养只猫
·
2017-10-10 17:14
监听UITextField内容变化的两种方式
//-string:输入的字符///-Returns:是否改变内容functextField(_textField:UITextField,shouldChangeCharactersInrange:
NSRange
chokshen
·
2017-09-28 22:15
iOS基础
限制textField长度
(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString:
xieyinghao
·
2017-09-22 11:49
限制 textField 输入框只能输入数字
限制输入框只能输入数字#defineNUMBERS@"0123456789"-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
草帽小子的万花筒
·
2017-09-18 17:46
数字键盘输入时自动空格分割数字
最终效果号码分割.gifOC代码-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
爨乡的云
·
2017-09-05 10:46
数字键盘输入时自动空格分割数字
最终效果号码分割.gifOC代码-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
爨乡的云
·
2017-09-05 10:46
UITextField限制输入两位小数
(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString:
D_w
·
2017-08-24 17:43
IOS 开发之 UITextField限制字数的方法
限制字数的方法在输入东西的时候,如果想限制最大字数,可以用下面方法:实例代码:-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
jackljf
·
2017-08-17 10:22
Swift:Range和
NSRange
问题
NSMutableAttributeString遇到的问题要特殊显示的subString可以调用openfuncaddAttributes(_attrs:[String:Any]=[:],range:
NSRange
谁的青春不迷茫
·
2017-08-04 14:20
UITextField 输入手机号格式化 和输入整数钱格式化
金钱的输入目前不支持小数点,问我也没说能输入小数点,我就没写直接粘贴代码吧-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
JW_T
·
2017-06-21 11:22
mac os x中选中textfield的部分文字
后面问了个大神,用cell实现,代码是这样的:#import"NSTextField+hh.h"@implementationNSTextField(hh)-(void)selectTextRange:(
NSRange
oh_flying
·
2017-06-20 11:57
输入框UITextField禁止输入空格
1,遵循UITextField的代理方法2,实现代理方法-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
dream9393
·
2017-06-07 11:25
oc基础
iOS 提升交互之根据多个UITextField的编辑状态改变按钮状态
编辑状态改变登录按钮状态的效果封装了一个方法.在UITextFieldDelegate的-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
dongZhenSong
·
2017-05-27 16:11
iOS开发
TextFiled从密文切换到明文,重新输入会清空原有的内容的问题
iOS本身并没有提供解决的办法,不过在TextField提供的一个代理里可以解决,代码如下://当用户需要自动更正功能是,可以调用这个方法,这个方法可以跟踪字段内做的最后一次修改,防止文字被改变返回NO,
NSRange
初心_13bc
·
2017-05-03 15:18
限制UITextField的输入字数
UITextFieldDelegate下面这个代理方法实现:-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
ITCodeShare
·
2017-04-01 14:17
NSRang和UITextRang相互转换
1.根据
NSRange
转换成NSTextRangeUITextPosition*beginning=textView.beginningOfDocument;UITextPosition*start=[
CodeFXQ
·
2017-03-01 15:42
NSRang和UITextRang相互转换
1.根据
NSRange
转换成NSTextRangeUITextPosition*beginning=textView.beginningOfDocument;UITextPosition*start=[
CodeFXQ
·
2017-03-01 15:42
iOS 限制UITextField只可以输入数字,限制文字长度
UITextFieldDelegateself.pwdTextField.delegate=self;2:在代理方法中加入限制-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
Leemin_ios
·
2017-01-07 16:05
iOS
iOS字符串常用处理方法
iOS字符串常用处理方法1.根据起始位置和长度进行字符串截取-substringWithRange方法说明:-(NSString*)substringWithRange:(
NSRange
)aRange其中关于
Lea__DongYang
·
2016-12-28 20:11
iOS_OC
ios 实名认证 手机号 身份证 银行卡 以及银行卡的格式 正则表达式
paramtextField格式@paramrange银行卡*/-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
dandinglovebug
·
2016-12-22 11:45
iOS 中 使用UITextField格式化银行卡号码的解决方案
pragmamark-UITextFieldDelegateUITextField键入字符后调用-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
乌鸦白WHITECROW
·
2016-12-14 09:18
详释(常见UITextView 输入之字数限制)之一---固定长度
相信大家在网上见得最多的是实现UITextViewDelegate[objc]viewplaincopy-(BOOL)textView:(UITextView*)textViewshouldChangeTextInRange:(
NSRange
Treey_Ahao
·
2016-12-12 13:36
iOS UITextField 金额输入限制
pragmamarkUITextField比较蠢的一种方法-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
huaiOS
·
2016-11-28 15:31
iOS 正则表达式 NSRegularExpression
自带的正则表达式:主要有四个方法-(NSArray*)matchesInString:(NSString*)stringoptions:(NSMatchingOptions)optionsrange:(
NSRange
icc_tips
·
2016-11-15 15:27
textField限制输入字符串的字数
-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
王木木lin
·
2016-11-08 13:33
iOS swift 限制TextField TextView输入长度(14个字符)
functextField(textField:UITextField,shouldChangeCharactersInRangerange:
NSRange
,replacementStringstring
ali_hilo
·
2016-11-07 15:07
Swift 3.0 label富文本
///富文本,改变字体颜色funcchangeTextColor(text:String,color:UIColor,range:
NSRange
)->NSAttributedString{letattributeStr
C_calary
·
2016-11-02 13:23
UILabel
iOS-Main-UITextField只允许输入中,英文,数字
要用代理的话,我们必须要明白下面这个方法是什莫意思:-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
_正阳_
·
2016-10-17 14:43
iOS最完美的UITextField中输入金额,只能输入数字和小数点,保留两位小数点且0放在首位
nonatomic,assign)BOOLisFirstZero;-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
Fade1992
·
2016-10-14 13:25
iOS 文本框只能输入数字
引入协议-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
)rangereplacementString
Satanshun
·
2016-10-13 10:25
Swift中String和NSString的一个不同之处
比如在涉及到处理字符串中字符索引的时候.我们首先来看一下NSString的字符串替换功能:letstring="ABCDE" letrange=Range(uncheckedBounds:(1,4)) letnsRange=
NSRange
mydo
·
2016-10-01 16:00
String
swift
NSString
字符串替换
使用UITextField限制只可输入中,英文,数字的方法
下面看看详细的步骤方法首先设置UItextField的代理实现如下方法:-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
辛多雷的挽歌
·
2016-09-25 15:22
UITextView 长度限制
-(BOOL)textView:(UITextView*)textViewshouldChangeTextInRange:(
NSRange
)rangereplacementText:(NSString*
秀才不才
·
2016-08-29 16:34
微信发红包UITextField金额输入格式化
微信发红包UITextField金额输入格式化-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
大招至胜
·
2016-08-24 16:10
Mobile
Dev
TextField和TextView限制输入字数长度
的限制代理方法只需要在这个代理方法里面code这样的代码就可以了16是长度可以自己设置-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
哈喽mybaby
·
2016-08-24 11:12
如何更好地限制一个UITextField的输入长度
首先想到的应该是通过UITextFieldDelegate的代理方法来限制:-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(
NSRange
Fang_OSH
·
2016-08-19 13:03
GeekBand-OC第二周笔记(字符串、集合、类别)
stringByReplacingCharactersInRange:(
NSRange
)withString:(NSString),使用这个函数替换原
周一见丶
·
2016-08-07 21:24
限制UItextField的输入位数(比如:电话号码)
self.textField.delegate=self2实现以下这个方法functextField(textField:UITextField,shouldChangeCharactersInRangerange:
NSRange
YH简简单单的生活
·
2016-08-01 19:28
TextView里限制输入字数的方法
:来进行判断://键入Done时,插入换行符,然后执行addBookmark-(BOOL)textView:(UITextView*)textViewshouldChangeTextInRange:(
NSRange
huqiji
·
2016-08-01 10:00
Objective-C
TextView里限制输入字数的方法
:来进行判断://键入Done时,插入换行符,然后执行addBookmark-(BOOL)textView:(UITextView*)textViewshouldChangeTextInRange:(
NSRange
huqiji
·
2016-08-01 10:00
Objective-C
上一页
7
8
9
10
11
12
13
14
下一页
按字母分类:
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
其他