摘要: 参考来自:http://www.cocoachina.com/iphonedev/toolthain/2011/1019/3387.html如何用Facebook graphic api上传视频:http://developers.facebook.com/blog/post/532/Keychain保存数据封装:https://github.com/carlbrown/PDKeychainBindingsController对焦功能的实现:http://www.clingmarks.com/?p=612自定义圆角Switch按件:https://github.com/domesticcats 阅读全文
posted @ 2012-04-06 23:30 FoxBabe 阅读(412) 评论(0) 推荐(1) 编辑
摘要: 参考来自:http://www.cocoachina.com/iphonedev/toolthain/2011/1109/3480.html扫描wifi信息:http://code.google.com/p/uwecaugmentedrealityproject/http://code.google.com/p/iphone-wireless/条形码扫描:http://zbar.sourceforge.net/iphone/sdkdoc/install.htmltcp/ip的通讯协议:http://code.google.com/p/cocoaasyncsocket/voip/sip:http 阅读全文
posted @ 2012-04-06 23:21 FoxBabe 阅读(287) 评论(0) 推荐(1) 编辑
摘要: MPMoviePlayerViewController是苹果提供的播放视频的控制器,可以直接从当前的控制器中推出即可。 NSBundle *bundle = [NSBundle mainBundle]; NSString *moviePath = [bundle pathForResource:@"Movie" ofType:@"m4v"]; NSURL *movieURL = [NSURL fileURLWithPath:moviePath]; MPMoviePlayerViewController *moviePlayerViewController 阅读全文
posted @ 2012-04-06 21:15 FoxBabe 阅读(872) 评论(0) 推荐(0) 编辑
摘要: 一种简单的图片切换效果,如下:通过滚动中间的图片或页面控制,都可以实现图片的切换。在xib中添加UIScrollView和UIPageControl,并设置为对应类的IBOutlet,#import <UIKit/UIKit.h>@interface HomePage : UIViewController<UIScrollViewDelegate>{ IBOutlet UILabel *message; IBOutlet UIScrollView *myScrollView; IBOutlet UIPageControl *myPageControl;}@propert 阅读全文
posted @ 2012-04-06 13:04 FoxBabe 阅读(16178) 评论(2) 推荐(1) 编辑
摘要: 在导航栏中加上分段控件是很常用的做法,效果如下:UISegmentedControl *segmentedControl=[[UISegmentedControl alloc] initWithFrame:CGRectMake(80.0f, 8.0f, 300.0f, 30.0f) ]; [segmentedControl insertSegmentWithTitle:@"最新上架" atIndex:0 animated:YES]; [segmentedControl insertSegmentWithTitle:@"热销商品" atIndex:1 an 阅读全文
posted @ 2012-04-06 12:57 FoxBabe 阅读(1467) 评论(0) 推荐(0) 编辑
摘要: 1、在新建的工程中应该包含Mainwindow.xib,关于在Xcode4.2及以上中添加MainWindow.xib,可以查看这里。2、在MainWindows中添加Tab Bar Controller;3、向Tab Bar Controller中添加Navigation Controller,MainWindows的截图如下: 阅读全文
posted @ 2012-04-06 12:53 FoxBabe 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 参考来自:http://blog.csdn.net/muyu114/article/details/68964981、新建一个空的应用程序2、添加一个空的xib文件到这里工程的应该是下面这个样子的:3、改变File’s Owner的class为UIApplication4、从Library中添加一个Object,并设置其class为你对应的应用程序的类(这里是DemoAppDelegate)5、添加windows,并在程序中设置windows为IBOutletThe xAppDelegate.h should read something like this:@interface DemoAp 阅读全文
posted @ 2012-04-06 12:43 FoxBabe 阅读(756) 评论(0) 推荐(2) 编辑