会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
天纯蓝
人的每一步行动都在书写自己的历史。
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
33
下一页
2013年2月1日
数组处理
摘要: //合并字符串数组 NSString *str = [array componentsJoinedByString:@"|"]; //字符串切割成数组 NSArray *array=[str componentsSeparatedByString:@"|"]; ...
阅读全文
posted @ 2013-02-01 15:00 天纯蓝
阅读(133)
评论(0)
推荐(0)
2013年1月29日
返回代码
摘要: [self.navigationController popViewControllerAnimated:YES];
阅读全文
posted @ 2013-01-29 09:30 天纯蓝
阅读(153)
评论(0)
推荐(0)
给TextView 加上圆角和边框
摘要: 要引头: #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 天纯蓝
阅读(3207)
评论(0)
推荐(0)
2013年1月26日
IOS TableView 详解
摘要: 一、建立 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 天纯蓝
阅读(23575)
评论(0)
推荐(4)
2013年1月25日
文本框输入怎么样让键盘消失
摘要: 把View 类改成UIControl 给View加onTouchDown事件 /* *点击空白处让键盘消失 */ - (IBAction)onTouchDownEvent:(id)sender { [tf1 resignFirstResponder]; [tf2 resignFirstResponder]; }
阅读全文
posted @ 2013-01-25 17:02 天纯蓝
阅读(264)
评论(0)
推荐(0)
XCode 的一个经典错误_objc_class_$_ XXXXClass referenced from:
摘要: 今天在编写Iphone的Code时遇到一个错,LINK时提示的。
阅读全文
posted @ 2013-01-25 14:58 天纯蓝
阅读(7786)
评论(1)
推荐(0)
发现一个学习IPhone控件提好的一个网站备记一下
摘要: http://code4app.com
阅读全文
posted @ 2013-01-25 11:50 天纯蓝
阅读(160)
评论(0)
推荐(0)
NSString 比较(转)
摘要: NSString *value = @"1234567890";比较的方法: [value compare:(NSString *)];[value compare:(NSString *) options:(NSStringCompareOptions)];[value compare:(NSString *) options:(NSStringCompareOptions) range...
阅读全文
posted @ 2013-01-25 11:42 天纯蓝
阅读(811)
评论(0)
推荐(0)
2013年1月24日
软件介绍(apache lighttpd nginx)
摘要: 1. lighttpd Lighttpd是一个具有非常低的内存开销,cpu占用率低,效能好,以及丰富的模块等特点。lighttpd是众多OpenSource轻量级的web server中较为优秀的一个。支持FastCGI, CGI, Auth, 输出压缩(output compress), URL重写, Alias等重要功能。 Lighttpd使用fastcgi方式运行php,它会使用...
阅读全文
posted @ 2013-01-24 11:00 天纯蓝
阅读(225)
评论(0)
推荐(0)
2013年1月23日
object-c中NSString与int和float的相互转换
摘要: 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 天纯蓝
阅读(607)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
33
下一页
公告
点击右上角即可分享