摘要: ffmpeg Documentation:http://ffmpeg.org/ffmpeg.htmlffmpeg4iphone:http://code.google.com/p/ffmpeg4iphone/ 阅读全文
posted @ 2012-03-17 16:42 FoxBabe 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 参考来自:http://www.cocoachina.com/bbs/read.php?tid=79169&keyword=ffmpeg一、编译ffmpeg模拟器版本1、到https://github.com/gabriel/ffmpeg-iphone-build下载ffmpeg-iphone-build2、先将gas-preprocessor.pl拷贝到/usr/sbin/目录中。3、到ffmpeg官网上下载ffmpeg源码下载地址:source snapshot4、在终端下定位到ffmpeg的目录下运行./configure --disable-doc --disable-ffmp 阅读全文
posted @ 2012-03-17 16:38 FoxBabe 阅读(903) 评论(1) 推荐(0) 编辑
摘要: 工程可以从https://github.com/erica/uidevice-extension下载,主要用于读取各种平台(iPhone、iPad、模拟器)下设备的信息。工程截图:main.m函数/* Erica Sadun, http://ericasadun.com iPhone Developer's Cookbook, 3.0 Edition BSD License, Use at your own risk */#import <UIKit/UIKit.h>#import "UIDevice-Reachability.h"#import &qu 阅读全文
posted @ 2012-03-17 15:23 FoxBabe 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: 在程序中调用系统自带的应用,比如我进入程序的时候,希望直接调用safar来打开一个网页,下面是一个简单的使用:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; self.viewController = [[[ViewControl... 阅读全文
posted @ 2012-03-17 11:27 FoxBabe 阅读(1455) 评论(1) 推荐(1) 编辑
摘要: NSMutableURLRequest通过POST方法向服务器请求时间,很简单的一个例子,使用HTTP入门。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. NSString *urlString = [[NSString alloc] initWithFormat:@"http://api.air-id.net/InterFace/datetime.php"]; NSMutableU... 阅读全文
posted @ 2012-03-17 10:50 FoxBabe 阅读(11329) 评论(2) 推荐(0) 编辑
摘要: 参考来源:http://kb.cnblogs.com/page/130970/当今web程序的开发技术真是百家争鸣,ASP.NET, PHP, JSP,Perl, AJAX 等等。 无论Web技术在未来如何发展,理解Web程序之间通信的基本协议相当重要, 因为它让我们理解了Web应用程序的内部工作. 本文将对HTTP协议进行详细的实例讲解,内容较多,希望大家耐心看。也希望对大家的开发工作或者测试工作有所帮助。使用Fiddler工具非常方便地捕获HTTP Request和HTTP Response, 。 阅读目录什么是HTTP协议Web服务器,浏览器,代理服务器URL详解HTTP协议是无状态的. 阅读全文
posted @ 2012-03-17 10:15 FoxBabe 阅读(225) 评论(0) 推荐(1) 编辑
摘要: 参考:http://hi.baidu.com/smallwolf99/blog/item/d221e811a3346dd4a6ef3f8d.html整理电脑时不小心卸载掉了winpcap,当时不知道是用来干嘛的。今天使用wireshark 这款很强大的网络监视软件,满心欢喜的打开,可是每次打开都会弹出“The NPF driver isn't running...”的错误提示窗口。解决方法如下:首先,你需要重新安装winpcap(最好下载一个最新版本:官方下载,这会官方好像打不开,也可以华军下载),然后(1)如果你使用的是Linux、Ubuntu系统,请用 >$ su Admin 阅读全文
posted @ 2012-03-17 10:03 FoxBabe 阅读(2680) 评论(0) 推荐(0) 编辑
摘要: google BTstack地址:http://code.google.com/p/btstack/使用方法:http://code.google.com/p/btstack/wiki/GettingStarted步骤说明:在IOS设备中通过Cydia来安装BTstack,直接搜索即可安装;get the BTstack project from the Google code SVN:从Google的SVN代码服务器中获得工程,SVN Location为http://btstack.googlecode.com/svn/trunk/,关于怎么在Xcode4中使用SVN,请参考Xcode4使用 阅读全文
posted @ 2012-03-17 00:31 FoxBabe 阅读(9051) 评论(10) 推荐(3) 编辑
摘要: 首先打开xcode->window->organizer,在左下角点击+,然后add repository,如下图:接下来在Name中输入工程名称(自定),在Location中输入您配置的svn路径,然后next,如图:如果svn路径没错,则下面直接点击Add,即可连接到svn服务器了。选择要修改的工程,可以check out到本地目录,并在左边的导航栏中列出已经check out出的工程。如图:点击左边check out出的工程,可以对工程文件进行update、commit等操作。 阅读全文
posted @ 2012-03-17 00:12 FoxBabe 阅读(630) 评论(0) 推荐(0) 编辑