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