上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: iOS SDK 接入指南安装使用 CocoaPods在 Podfile 添加 pod 'Pingpp', '~> 2.1.0'默认会包含支付宝、微信、银联和百度钱包,你也可以自己选择渠道。目前有 ApplePay、Alipay、Wx、UnionPay、Bfb 五个子模块可选择,例如: pod 'Pi... 阅读全文
posted @ 2015-08-09 18:12 Cheetah_yang 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 今天升级了Mac OS X 10.10-Yosemite以后运行pod install遇到下面的错误:/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:245:in'mkdir... 阅读全文
posted @ 2015-08-09 12:05 Cheetah_yang 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 最近使用CocoaPods来添加第三方类库,无论是执行pod install还是pod update都卡在了Analyzing dependencies不动原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。加参数的命令如下:pod... 阅读全文
posted @ 2015-08-09 12:03 Cheetah_yang 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 看看这个代码: http://code4app.com/codesample/4fcc512d6803fae60b000002 inApp跳转,不过需要Nimbus类库。 要跳转到另一个APP,需要另一个APP设置 URL types ,这不能传图,具体百度,很简... 阅读全文
posted @ 2015-08-07 21:49 Cheetah_yang 阅读(192) 评论(0) 推荐(0) 编辑
摘要: [self.contentView addSubview:self.scrollView]; self.scrollView.userInteractionEnabled = NO; [self.contentView addGestureRecognizer:self.scro... 阅读全文
posted @ 2015-08-03 20:50 Cheetah_yang 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 打开终端输入:xcode-select --install 回车安装好了测试结果:gcc -v显示如下:xcode-select: note: install requested for command line developer toolsapple-1tekiiMac:~ apple-1$ g... 阅读全文
posted @ 2015-08-03 16:25 Cheetah_yang 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: 在ios开发时, 程序的图标会被apple进行美化, 自动圆角, 加上阴影和反光效果;如果有时候不想要阴影和反光,可以这样做:在Info.plist中添加一个Icon already includes gloss effects并选择YES. 阅读全文
posted @ 2015-08-03 16:11 Cheetah_yang 阅读(913) 评论(0) 推荐(0) 编辑
摘要: 设置上一级controller的backBarButtonItem.self.navigationItem.backBarButtonItem= [[UIBarButtonItem alloc]initWithTitle:@"返回" style:UIBarButtonItemStylePlainta... 阅读全文
posted @ 2015-08-03 16:10 Cheetah_yang 阅读(142) 评论(0) 推荐(0) 编辑
摘要: NSString *_string = [NSString stringWithFormat:@"123 456"];NSRange _range = [_string rangeOfString:@" "];if (_range.location != NSNotFound) { //有空格}... 阅读全文
posted @ 2015-08-03 16:09 Cheetah_yang 阅读(211) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/kepoon/article/details/7763106 阅读全文
posted @ 2015-08-03 15:53 Cheetah_yang 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页