九 .oc基础(Foundation框架上)1.四中结构体类型:NSRange,NSPoint,NSSize,NSRect1>NSRange:是一个以为的结构由成员location和成员length共同组成。*NSRange的创建方式:NSRange range=NSMakeRange(2.4),代...
分类:
其他好文 时间:
2015-03-02 18:36:56
阅读次数:
154
(一)要掌握这些的运用NSRange(location length) ---范围 range:范围NSPoint\(相当于)CGPoint ---点NSSize\CGSize ---尺寸NSRect\CGRect (CGPint CGSize) ---相当于一个...
分类:
移动开发 时间:
2015-02-26 17:58:15
阅读次数:
159
在一个字符串A中搜索特定字符串BNSInteger locationBegin = 0;//开始搜索字符串A do { NSRange range = [A rangeOfString:B options:NSCaseInsensitiveSe...
分类:
其他好文 时间:
2015-02-13 14:47:33
阅读次数:
110
UILabel *lable = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 300)]; lable.text = @"其中俩字是红色,大小为17"; NSRange rangeRmb=[lable.text rangeO...
分类:
移动开发 时间:
2015-02-12 12:00:01
阅读次数:
137
结构体:NSRange NSPoint NSSize NSRectNSRange:表示范围,里面有两个变量(location(位置),length(长度))。 用法:NSRange 变量名 = NSMakeRange(location , length) 常用于查找某个字符串在...
分类:
其他好文 时间:
2015-02-10 20:21:42
阅读次数:
175
都需要包含Foundation.h头文件
CG:CoreGraphics框架简称,CG开头的在Foundation框架中有声明,但是没有实现
NS:NextStep
一 NSRange范围
1 定义:
typedef struct _NSRange{
NSUInteger location;
NSUInteger length;
}NSRange;
2 示例:...
分类:
移动开发 时间:
2015-02-03 01:55:19
阅读次数:
218
//限制输入的是数字
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
return [self validateNumber:string];
}
- (BOOL)v...
分类:
其他好文 时间:
2015-01-22 15:28:46
阅读次数:
80
//如果输入的昵称是字母,判断是否合格
if(self.nickNameText){
for (int i=0; iself.nickNameText.length; i++)
{
NSRange range=NSMakeRange(i,1);
NSString *subSt...
分类:
移动开发 时间:
2015-01-16 16:47:07
阅读次数:
167
Foundation 框架包含了很多开发常用的数据类型:Foundation中包含的数据类型:结构体枚举类要想使用 Foundation 中的数据类型,只要包含主头文件即可。#impot 结构体: 我们常用的结构体有:NSRange、NSPoint (CGPint )、NSSize(CGSize)....
分类:
其他好文 时间:
2015-01-07 01:49:35
阅读次数:
281
Foundation 框架包含了很多开发常用的数据类型:Foundation中包含的数据类型:结构体枚举类要想使用 Foundation 中的数据类型,只要包含主头文件即可。#impot 结构体:NSRange、NSPoint (CGPint )、NSSize(CGSize)、NSRect(CGRe...
分类:
其他好文 时间:
2015-01-06 07:14:34
阅读次数:
247