摘要:
原文摘自:http://www.apple.com.cn/developer/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AudioandVideoTechnologies/AudioandVideoTechnologies.html#//apple_ref/doc/uid/TP40007072-CH19-SW39 阅读全文
摘要:
1,使用数组遍历某一文件夹中的图片,代码如下: NSFileManager *fileManager = [NSFileManager defaultManager]; NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSLog(@"%d",[paths count]); NSError *error = nil; NS 阅读全文
摘要:
1利用FileManage来读取document的文件NSFileManager *fileManager = [NSFileManager defaultManager]; NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSError *error = nil; NSArray *fileList = [[NSArray alloc.. 阅读全文
摘要:
1.保存图片到document目录下:代码如下:View Code2.从document目录下显示显示图片代码如下:View Code 阅读全文
摘要:
1原文摘自:http://ruixiazun.blog.163.com/blog/static/906879182011229112144105/在开发iPhone程序时,有时候要对文件进行一些操作。而获取某一个目录中的所有文件列表,是基本操作之一。通过下面这段代码,就可以获取一个目录内的文件及文件夹列表。NSFileManager *fileManager = [NSFileManager defaultManager];//在这里获取应用程序Documents文件夹里的文件及文件夹列表 NSArray *documentPaths = NSSearchPathForDirectoriesI 阅读全文
摘要:
1:原文摘自:http://www.cocoachina.com/bbs/read.php?tid=32931我在Documents文件中建了一个文件夹fileName, 文件夹保存的有一张图片.我想读出来并在UIImageView中显示,这如何实现呢?下面是我写的代码,不知道哪出问题了??#import <UIKit/UIKit.h>@interfaceUIView{UIImageView *image;}@property (nonatomic, retain) IBOutlet UIImageView *image;@end@implementationNSFileManag 阅读全文
摘要:
1.本文摘自:http://mobile.51cto.com/iphone-278789.htmiPhone应用AVAudioPlayer播放音频讲解是本文要介绍的内容,iPhone是媒体大师,其内建的iPod功能可轻松的处理音频和视频,下面我将对AVAudioPlayer这个音频播放类详细的介绍。使用AVAudioPlayer可以实现载入、播放、暂停、停止音频,监控平均和峰值音量水平.AVAudioPlayer处理音频中断当用户在音频回放期间受到电话时,音频会消失,出现这种情况时AVAudioPlayer委托接受audioPlayerBeginInterruption:回调,音频会话暂时无效 阅读全文