09 2012 档案

摘要:NSMutableArray *array = [NSMutableArray arrayWithCapacity:50]; [array addObject:@"a"]; [array addObject:@"b"]; [array addObject:@"c"]; [array addObject:@"d"]; NSLog(@"%@",array);//以大括号形式输出数组内容 //第一种迭代方法 for(int i=0;i<[array count];i++) ... 阅读全文
posted @ 2012-09-19 16:39 _安静ゝ 阅读(1426) 评论(1) 推荐(1) 编辑
摘要:打开新的页面,起控制器为controller[self presentModalViewController:controller animated:YES];关闭通过presentModalViewController打开的页面[self dismissModalViewController:YES] 阅读全文
posted @ 2012-09-19 15:43 _安静ゝ 阅读(203) 评论(0) 推荐(0) 编辑