objective-c最后一节笔记
// NSDate *date=[NSDate date];//这里的时间是GMT时间是。格林尼标准时间和北京时间相差8个小时,因为北京在东八区。
// NSDate *date1=[NSDate dateWithTimeInterval:60*60*8 sinceDate:date];//加8个小时
// 字典加数组操作
// NSArray *keys = [@"one two three" componentsSeparatedByString:@" "];
// NSArray *value = [@"two bravo a" componentsSeparatedByString:@" "];
// NSDictionary *dic = [[NSDictionary alloc]initWithObjects:value forKeys:keys];
// NSLog(@"%s",[[dic description] UTF8String]);//返回类型是NSString;
// NSLog(@"%@",[dic objectForKey:@"one"]);
// NSLog(@"%@",keys);
// [dic release];
// NSURL *url=[[NSURL alloc]initWithString:@"http://www.baidu.com"];
// NSString *astring = [[NSString alloc] initWithContentsOfURL:url];
// NSLog(@"astring:%@",astring);
// NSMutableArray *arry=[[NSMutableArray alloc ]initWithObjects:@"987",@"654",@"321",@"000", nil];
//
// for (NSString *element in arry ) {
// NSLog(@"element:%@",element);
// }
//创建文件管理器;
// NSFileManager *filem=[NSFileManager defaultManager];
// //指定要存档的路径
// NSString *path=[NSString stringWithFormat: @"/Users/ibokan/Desktop/a6.txt"];
// // NSString *path1=[NSString stringWithFormat:@"/Users/ibokan/Desktop/a1.txt"];
// //添加字符串信息;
// NSMutableString *str=[NSMutableString stringWithFormat:@"abc"];
// //2个属性间用-分割。
// [str appendFormat:@"\n"];
// [str appendFormat:@"%d",55];
// [str appendFormat:@"-"];
// [str appendFormat:@"%d",333];
// //将字符串对象转换为NSData类型的对象。
// NSData *data=[str dataUsingEncoding:NSUTF8StringEncoding];
//
// if ([filem fileExistsAtPath:path]) {
// NSLog(@"文件已经存在,不能再创建。");
// }
// else{
// [filem createFileAtPath:path contents:data attributes:nil];
// //[filem
// }
// NSString *s=[NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
// NSArray *array=[s componentsSeparatedByString:@"\n"];
// NSString *a1=[array objectAtIndex:0];
// NSString *a2=[array objectAtIndex:1];
// NSLog(@"a1==%@,a2==%@",a1,a2);
//
// //[filem removeItemAtPath:@"/Users/ibokan/Desktop/a6.txt" error:nil];
// //获取指定路径的文件数据
// NSString *file=[NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
// //添加指定的信息
// NSString *addFile=[file stringByAppendingFormat:@"hello"];
// //把添加的信息写入文件。
// [addFile writeToFile:path atomically:NO encoding:NSUTF8StringEncoding error:nil];
// NSLog(@"addFile==%@",addFile);
// //用NSData类型接受网络数据,可以提快速度。
// NSData *dt=[NSData dataWithContentsOfFile:path];
// //转换为NSString类型。
// NSString *dtString =[NSString stringWithCString:[dt bytes] encoding:NSUTF8StringEncoding];
// NSString *addt=[dtString stringByAppendingFormat:@"piaoliang"];
// [addt writeToFile:path atomically:NO encoding:NSUTF8StringEncoding error:nil];
// //新建一个url
// NSURL *url=[NSURL URLWithString:@"http://api.hudong.com/iphonexml.do?type=focus-c"];
// //新建一个请求
// NSURLRequest *request=[NSURLRequest requestWithURL:url];
// //新建连接
// [NSURLConnection connectionWithRequest:request delegate:self];
//
// NSLog(@"NSURLConnection完成");
注意到writeToFile:方法中的单词atomically了吗?这种调用有什么负面作用吗?没有。atomically:参数的值为BOOL类型,用于通知Cocoa是否应该首先将文件内容保存在临时文件中,当文件成功保存后,在将该临时文件和原始文件交换。这是一种安全机制:如果在保存过程中出现意外,不会破坏原始文件,但这种安全机制需要付出一定的代价:在保存过程中,由于原始文件仍然保存在磁盘中,所以需要使用双倍的磁盘空间。除非保存的文件非常大,将会占用用户硬盘的空间,否则应该自动保存文件。
#import "ViewController.h"
#import "GDataXMLNode.h"
#import "JSON.h"
@implementation ViewController
@synthesize finaldata=_finaldata;
- (void)didReceiveMemoryWarning
{
[superdidReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
-(void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
NSLog(@"连接开始");
//初始化_finaldata
_finaldata=[[NSMutableDataalloc]initWithCapacity:1024];
}
-(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
NSLog(@"接受数据");
//每次回调函数将接受到的data附加到finaldata
[self.finaldata appendData:data];
}
-(void) connectionDidFinishLoading:(NSURLConnection *)connection{
//创建图片view
UIImageView *view=[[UIImageViewalloc]initWithFrame:CGRectMake(0, 100, 320, 320)];
//创建图片
UIImage *image=[UIImage imageWithData:self.finaldata];
//图片放入view
view.image=image;
[self.view addSubview:view];
//测试下载图片到本地
//下载的目录
NSString *path=[[NSBundlemainBundle]bundlePath];
NSString *urlname=@"http://best50.cn:8080/update/10/food/72.jpg";
// NSLog(@"%@",[urlname lastPathComponent]);
// NSLog(@"%@",path);
//具体路径
NSString *filepath=[path stringByAppendingPathComponent:[urlname lastPathComponent]];
NSFileManager *fm=[NSFileManagerdefaultManager];
if([fm createFileAtPath:filepath contents:self.finaldataattributes:nil]){
NSLog(@"下载成功");
}
}
-(void) loadImage:(id) sender{
//测试异步连接
//1创建url对象
//http://best50.cn:8080/update/10/food/72.jpg
//2创建请求对象
NSURLRequest *request=[NSURLRequestrequestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheDatatimeoutInterval:10];
//3发起异步请求,并设置代理
[NSURLConnectionconnectionWithRequest:request delegate:self];
}
-(void)showImage:(id)sender{
//测试异步连接
//创建url对象
//这个路径不知道为什么不能用。
//创建请求对象。
NSURLRequest *request1=[NSURLRequestrequestWithURL:url1 cachePolicy:NSURLRequestReloadIgnoringLocalCacheDatatimeoutInterval:122];
//发起异步请求。并设置代理。
[NSURLConnectionconnectionWithRequest:request1 delegate:self];
}
- (void)viewDidLoad
{
[superviewDidLoad];
// UIButton *btn=[UIButton buttonWithType:1];
// btn.frame=CGRectMake(0, 0, 100, 80);
// [btn setTitle:@"piaoliang" forState:UIControlStateNormal];
// [btn addTarget:self action:@selector(showImage:) forControlEvents:UIControlEventTouchUpInside];
// [self.view addSubview:btn];
//1测试get同步连接
//1创建url对象
//http://api.hudong.com/iphonexml.do?type=focus-c
// NSURL *url=[NSURL URLWithString:@"http://api.hudong.com/iphonexml.do?type=focus-c"];
// //2创建请求对象
// NSURLRequest *request=[NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:10];
// //3创建响应和错误指针对象
// NSHTTPURLResponse *response=nil;
// NSError *error=nil;
// //4创建连接对象发起同步连接,并将返回数据存入data
// NSData *data=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
// //5打印请求status,和错误status
// NSLog(@"response=%@",[NSHTTPURLResponse localizedStringForStatusCode:[response statusCode]]);
// NSLog(@"error=%@",[error localizedDescription]);
// //6将内容打印输出
// NSLog(@"data=%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]);
//2测试post同步连接
//1创建url对象
//http://api.hudong.com/iphonexml.do?type=focus-c
// NSURL *url=[NSURL URLWithString:@"http://api.hudong.com/iphonexml.do?type=focus-c"];
// //2创建请求对象
// NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:10];
// //2.5设置请求为post
// [request setHTTPMethod:@"post"];
// //3创建响应和错误指针对象
// NSHTTPURLResponse *response=nil;
// NSError *error=nil;
// //4创建连接对象发起同步连接,并将返回数据存入data
// NSData *data=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
// //5打印请求status,和错误status
// NSLog(@"response=%@",[NSHTTPURLResponse localizedStringForStatusCode:[response statusCode]]);
// NSLog(@"error=%@",[error localizedDescription]);
// //6将内容打印输出
// NSLog(@"data=%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]);
//3测试异步连接请求图片并下载到本地
UIButton *btn=[UIButtonbuttonWithType:1];
btn.frame=CGRectMake(0, 0, 100, 80);
[btn setTitle:@"点一点"forState:UIControlStateNormal];
[btn addTarget:selfaction:@selector(loadImage:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
//4测试xml本地文件解析
// NSString *path=[[NSBundle mainBundle]bundlePath];
// NSString *filepath=[path stringByAppendingPathComponent:@"Student.xml"];
// NSString *str1=[NSString stringWithContentsOfFile:filepath encoding:NSUTF8StringEncoding error:nil];
// NSLog(@"%@",str1);
// //解析文档
// //1创建要解析的XML文档对象
// GDataXMLDocument *doc=[[GDataXMLDocument alloc]initWithXMLString:str1 options:0 error:nil];
// //2获取要解析文档的root元素
// GDataXMLElement *root=doc.rootElement;
// //3从根元素获取元素
// NSArray *docList=[root elementsForName:@"student"];
// NSLog(@"docList==%@",docList);
// //4获取第一个student元素
// GDataXMLElement *de1=[docList objectAtIndex:0];
// NSLog(@"de1==%@",de1);
// //5获取子元素
// NSArray *stuAry1=[de1 children];
// NSLog(@"stuAry1==%@",stuAry1);
// //获取每个子元素
// for (GDataXMLElement *e in stuAry1) {
// NSLog(@"%@=%@",e.name,e.stringValue);
// }
//5json解析测试,测试读取本地JSON文件内容
// NSString *jpath=[path stringByAppendingPathComponent:@"student.json"];
// NSString * strJson = [NSString stringWithContentsOfFile:jpath encoding:NSUTF8StringEncoding error:nil];
// NSArray * arr= [strJson JSONValue];
// for (int i=0; i<2; i++) {
// NSDictionary * dic = [arr objectAtIndex:i];
// for(id s in dic)
// {
// NSLog(@"%@=%@",s,[dic objectForKey:s]);
// }
// }
}
- (void)viewDidUnload
{
[superviewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
- (void)viewWillDisappear:(BOOL)animated
{
[superviewWillDisappear:animated];
}
- (void)viewDidDisappear:(BOOL)animated
{
[superviewDidDisappear:animated];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
@end
相关推荐
Objective-C语言入门教程&深入浅出,理论实践相结合 Objective-C语言入门教程&深入浅出,理论实践相结合 Objective-C语言入门教程&深入浅出,理论实践相结合 Objective-C语言入门教程&深入浅出,理论实践相结合 ...
Objective-C是一种广泛用于苹果平台应用程序开发的编程语言,它是C语言的一个超集,并加入了Smalltalk风格的消息传递机制。本篇教程主要面向初学者,介绍了Objective-C的基础知识点和一些核心概念。 1. Objective-C...
最后,"第九讲 Foundation框架"介绍了苹果的基础框架,它提供了一系列核心的类和功能,是所有Objective-C应用开发的基础,包括字符串处理、集合类、时间日期处理等。 通过以上九讲的学习,你将全面掌握Objective-C...
### 在Windows下搭建Objective-C开发环境 随着移动应用开发的普及,越来越多的开发者开始尝试不同的编程语言和技术栈。尽管Objective-C主要与Apple的平台(如iOS和macOS)相关联,但有时候,出于某些原因(比如团队...
Objective-C语言的许多决策可以在编译和运行时执行。只要有可能,它是动态的。这意味着Objective-C语言不仅需要一个编译器,还需要一个运行时系统来执行编译的代码。Runtime系统是一种用于Objective-C语言的操作系统...
《Objective-C高级编程:iOS与OS X多线程和内存管理》是一本深入探讨Apple平台开发中的关键技术的书籍。本书主要围绕Objective-C语言在iOS和OS X操作系统上的应用,特别是针对多线程和内存管理这两个核心主题进行...
### Objective-C 2.0 运行时系统编程指南 #### 概述 Objective-C是一种面向对象的编程语言,它以其独特的动态性而闻名。这种动态性体现在它能够尽可能地将决策过程推迟到运行时执行,而不是在编译或链接阶段。因此...
1. **Objective-C基础**:Objective-C是在C语言基础上扩展的,因此,理解C语言的基本语法是必要的。Objective-C添加了消息传递机制、类和协议等面向对象特性。 2. **消息传递**:Objective-C中的对象通过发送消息来...
C语言是计算机编程的基础,它是Objective-C的重要基石。在学习Objective-C之前,深入理解C语言的知识点至关重要。C语言以其高效、简洁和灵活性被广泛应用于系统编程、嵌入式开发、游戏引擎等领域。本资料主要涵盖了...
希望这个简单的Objective-C语言教程能够为你提供一个入门的起点。Objective-C是一种面向对象的编程语言,广泛应用于Mac OS和iOS开发。通过学习Objective-C的基本语法、类和对象、控制流程和方法等内容,你将能够编写...
用Objective-C语言实现了各种设计模式,收集各种例子,方便大家学习和普及设计模式。.zip用Objective-C语言实现了各种设计模式,收集各种例子,方便大家学习和普及设计模式。.zip用Objective-C语言实现了各种设计...
Objective-C是基于C语言的,主要用于构建iOS和macOS应用程序,而Objective-C++则是Objective-C的一个扩展,它引入了C++的特性,使得开发者可以同时利用Objective-C的动态特性和C++的面向对象编程能力。 ### ...
《Objective-C基础教程》是一本面向初学者的编程书籍,主要涵盖了Objective-C语言的基本概念、语法和编程实践,尤其适合那些想要踏入iOS应用开发领域的学习者。Objective-C是Apple公司开发的面向对象的编程语言,它...
1. **Objective-C基础**:Objective-C是在C语言基础上扩展的,因此它包含了C的所有特性。书中会讲解基本的数据类型、控制结构、函数和指针等基础知识,同时介绍Objective-C特有的动态类型和消息传递机制。 2. **...
1. **Objective-C基础**:Objective-C是在C语言基础上扩展的,添加了面向对象特性。它的基础包括类、对象、消息传递等概念。类定义了对象的属性和行为,对象则是类的实例。消息传递是Objective-C的核心,通过`...
Objective-C语法的基石是C语言的语法结构,这意味着所有的C语言代码都可以在Objective-C中直接使用。但是,Objective-C在C的基础上新增了消息传递机制,这是它与C语言的一个重要区别。在Objective-C中,方法调用是...
《Objective-C 程序设计(第4版)》作者假设读者没有面向对象程序语言或者C语言(Objective-C基础)编程经验,因此,初学者和有经验的程序员都可以使用这本《Objective-C 程序设计(第4版)》学习Objective-C。...
Objective-C是在C语言的基础上扩展的,因此了解C语言的基本概念是必要的。C语言提供了基本的数据类型(如int、char、float等)、控制流程(如if语句、for循环、while循环)、函数以及指针等概念。在Objective-C中,...
这个压缩包包含两个关于Objective-C的学习资源:"Programming In Objective-C.chm" 和 "Programming in Objective-C.2.0 中文版.pdf"。这两个文件分别以CHM(Microsoft帮助文档格式)和PDF(便携式文档格式)呈现,...