要限制一个UITextField的输入字数(参考链接),首先想到的应该是通过UITextFieldDelegate的代理方法来限制:- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)ra...
分类:
其他好文 时间:
2015-07-26 12:26:44
阅读次数:
141
要限制一个UITextField的输入字数(参考链接),首先想到的应该是通过UITextFieldDelegate的代理方法来限制:- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)ra...
分类:
其他好文 时间:
2015-07-25 15:06:10
阅读次数:
83
//
// main.m
// 常用结构体
//
#import
/*
常用结构体
1> 创建一个NSRange结构体,表示范围
2> NSSize等同于CGSize 有两个值组成 weight 表示宽度 height 表示高度
3> NSPoint等同于CGPoint 表示一个点的坐标位置
4> NSRect 等同于CGRect 表示一个矩形
*/
int main(int ...
分类:
其他好文 时间:
2015-07-25 09:33:21
阅读次数:
127
//一: 迭代器
//
数组
NSArray *arr=
@[@"1",@"2",@"3",@"4",@"5"];
NSEnumerator *enumerator = [arr
objectEnumerator];
NSString *str = nil;
while (str = [enumerator
nextObj...
分类:
其他好文 时间:
2015-07-23 21:51:33
阅读次数:
234
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{/*if ([text isEqualToString:@"\n"]){[t...
分类:
其他好文 时间:
2015-07-23 13:36:47
阅读次数:
129
NSRange (location length)"I love oc"NSRange r = NSMakeRange(2,4)NSString *str = @"i love you";NSRange range = [str rangeofString:@"love"];NSLog(@"loc ...
分类:
其他好文 时间:
2015-07-19 13:08:34
阅读次数:
100
//去除字符串中用括号括住的位置
-(NSString *)handleStringWithString:(NSString *)str{
NSMutableString * muStr = [NSMutableString stringWithString:str];
while (1) {
NSRange range = [muStr rangeOfS...
分类:
移动开发 时间:
2015-07-15 17:04:16
阅读次数:
163
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {NSRange last = [_borMone...
分类:
其他好文 时间:
2015-07-14 15:32:58
阅读次数:
88
1、Foundation框架-常用结构体NSRange(location length)NSPoint\CGPointNSSize\CGSizeNSRect\CGRect (CGPint CGSize)2、使用这些CGPointEqualToPoint、CGRectContainsPoint等函数的...
分类:
其他好文 时间:
2015-07-08 12:44:18
阅读次数:
88
+ (CGFloat)labelHeight:(UILabel *)label lines:(NSInteger)lines{ NSRange range = NSMakeRange(0, label.attributedText.length); NSDictionary *dic = [la.....
分类:
移动开发 时间:
2015-07-07 18:27:38
阅读次数:
120