上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页
摘要: //合并字符串数组 NSString *str = [array componentsJoinedByString:@"|"]; //字符串切割成数组 NSArray *array=[str componentsSeparatedByString:@"|"]; ... 阅读全文
posted @ 2013-02-01 15:00 天纯蓝 阅读(130) 评论(0) 推荐(0) 编辑
摘要: [self.navigationController popViewControllerAnimated:YES]; 阅读全文
posted @ 2013-01-29 09:30 天纯蓝 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 要引头: #import <QuartzCore/QuartzCore.h>代码如下: [tvContent.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];[tvContent.layer setBorderColor:[[UIColor grayColor] CGColor]];[tvContent.layer set... 阅读全文
posted @ 2013-01-29 09:17 天纯蓝 阅读(3202) 评论(0) 推荐(0) 编辑
摘要: 一、建立 UITableView DataTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)];[DataTable setDelegate:self];[DataTable setDataSource:self];[self.view addSubview:DataTable];[DataTable ... 阅读全文
posted @ 2013-01-26 09:56 天纯蓝 阅读(23565) 评论(0) 推荐(4) 编辑
摘要: 把View 类改成UIControl 给View加onTouchDown事件 /* *点击空白处让键盘消失 */ - (IBAction)onTouchDownEvent:(id)sender { [tf1 resignFirstResponder]; [tf2 resignFirstResponder]; } 阅读全文
posted @ 2013-01-25 17:02 天纯蓝 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 今天在编写Iphone的Code时遇到一个错,LINK时提示的。 阅读全文
posted @ 2013-01-25 14:58 天纯蓝 阅读(7774) 评论(1) 推荐(0) 编辑
摘要: http://code4app.com 阅读全文
posted @ 2013-01-25 11:50 天纯蓝 阅读(113) 评论(0) 推荐(0) 编辑
摘要: NSString *value = @"1234567890";比较的方法: [value compare:(NSString *)];[value compare:(NSString *) options:(NSStringCompareOptions)];[value compare:(NSString *) options:(NSStringCompareOptions) range... 阅读全文
posted @ 2013-01-25 11:42 天纯蓝 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 1. lighttpd Lighttpd是一个具有非常低的内存开销,cpu占用率低,效能好,以及丰富的模块等特点。lighttpd是众多OpenSource轻量级的web server中较为优秀的一个。支持FastCGI, CGI, Auth, 输出压缩(output compress), URL重写, Alias等重要功能。 Lighttpd使用fastcgi方式运行php,它会使用... 阅读全文
posted @ 2013-01-24 11:00 天纯蓝 阅读(220) 评论(0) 推荐(0) 编辑
摘要: NSString *tempA = @"123"; NSString *tempB = @"456"; 1,字符串拼接 NSString *newString = [NSString stringWithFormat:@"%@%@",tempA,tempB]; 2,字符转int int intString = [newString intValue]; 3,int转字符 NSStr... 阅读全文
posted @ 2013-01-23 15:29 天纯蓝 阅读(603) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页