iOS
钠离子
这个作者很懒,什么都没留下…
展开
-
ipa终端打包
配置好证书,然后在命令行转到项目目录(GC.xcodeproj)1.清除archerminddeMac-mini:GC2.3877 archermind$ xcodebuild clean2.编译archerminddeMac-mini:GC2.3877 archermind$xcodebuild -target GC-configuration Release原创 2015-04-21 17:26:05 · 462 阅读 · 0 评论 -
iOS异步加载缓存图片
- (void)viewDidLoad { [superviewDidLoad]; imageView = [[UIImageViewalloc] init]; [imageViewsetBackgroundColor:[UIColorgrayColor]]; imageView.frame =CGRectMake(60,60, 20原创 2015-10-08 18:50:18 · 527 阅读 · 0 评论 -
Mac终端编写编译C程序的实例
步骤:创建C文件、用Vim编写C程序、编译C程序文件、执行编译后生成的.out文件。1、touch Hello.c //创建一个Hello.c文件(本目录下)2、vim Hello.c //用vim编辑Hello.c文件 //打开vim后先输入i进入转载 2015-09-08 10:23:54 · 581 阅读 · 0 评论 -
NSOperation
一.NSOperation NSOperation是抽象基类,因此必须使用它的子类,使用NSOperation子类的方式有2种: (1) Foundation框架提供了两个具体子类直接供我们使用:NSInvocationOperation和NSBlockOperation (2) 自定义子类继承NSOperation,实现内部相应的方法转载 2015-07-30 14:48:53 · 455 阅读 · 0 评论 -
日期格式化
NSDate * nowDate = [NSDatedate]; NSDateFormatter *dateFormatter = [[NSDateFormatteralloc]init]; [dateFormattersetDateFormat:@"MMMM dd, yyyy 'at' hh:mm a"]; NSString * dateString =原创 2015-07-15 17:21:41 · 404 阅读 · 0 评论 -
NSURLConnection Get
NSString *cityString = [@"南京"stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSString *weatherString = [NSStringstringWithFormat:@"http://v.juhe.cn/weather/index?cityname=%@&原创 2015-06-25 16:14:47 · 428 阅读 · 0 评论 -
iOS 获取文件夹
获取应用Home文件夹NSString* homePath = NSHomeDirectory();/Applications/5426E9E9-AC0B-4304-A17D-59A8AFFEA1A5获取Document文件夹NSArray* pathes = NSSearchPathForDirectoriesInDomains(NSD转载 2014-11-03 10:41:35 · 444 阅读 · 0 评论 -
iOS手势
- (void)viewDidLoad{ [superviewDidLoad]; _rotateImageview = [[UIImageViewalloc]initWithFrame:CGRectMake(0,0, [UIScreenmainScreen].bounds.size.width, [UIScreenmainScreen].bo原创 2015-05-29 11:29:46 · 519 阅读 · 0 评论 -
FFmpeg在iOS上编译
准备条件1.先下载文件:https://github.com/libav/gas-preprocessor复制gas-preprocessor.pl到/usr/sbin下,修改文件权限:chmod 777 /usr/local/bin/gas-preprocessor.pl2.安装yasm curl http://www.tortall.net/转载 2015-05-28 15:45:07 · 563 阅读 · 0 评论 -
Git解决fatal: unable to connect to github.com
命令:bower install jquery 【mac】错误信息:bower error status code of git: 128fatal: unable to connect to github.com:github.com[0: 你的IP]: errno=Operation timed out原因:需要用https才能读到数据解决方法:输入命令转载 2015-05-15 14:39:48 · 9379 阅读 · 0 评论 -
Xcode注释插件vvDocumenter
1.前往GitHub下载工程文件:https://github.com/onevcat/VVDocumenter-Xcode2.用Xcode打开工程,Command + B Build成功后,可以在~/Library/Application Support/Developer/Shared/Xcode/Plug-ins目录下看到生成的VVDocumenter-Xcode.xcplugi转载 2015-05-08 16:17:52 · 467 阅读 · 0 评论 -
Auto Layout
/*设置顶部图片*/ UIImageView *headerView = [[UIImageViewalloc] init]; headerView.translatesAutoresizingMaskIntoConstraints =NO; headerView.image = [UIImageimageNamed:@"btn_scroll_pictur原创 2015-10-09 18:14:22 · 344 阅读 · 0 评论