- 浏览: 236697 次
- 性别:
- 来自: 北京
最新评论
-
lanzhiyuan:
楼主还混这里不?NSData *data = [NSURLCo ...
[转] 为UIWebView实现离线浏览 -
hyc4117:
#define OpenSSLRSAPublicKeyFile ...
IOS openssl rsa encrypt/decrypt -
guogongjun:
确实有效,不错,感谢啦大神
[转]安装openfire后admin无法登录管理控制平台 -
xiongyoudou1:
怎么办,而且你那下载的demo和你讲解的不是一样
[转] 为UIWebView实现离线浏览 -
xiongyoudou1:
有问题。执行到方法NSData *data = [NSURLC ...
[转] 为UIWebView实现离线浏览
文章列表
引用
错误:dyld: Library not loaded
例子:dyld: Library not loaded: @rpath/SenTestingKit.framework/Versions/A/SenTestingKit
解决方案:http://blog.sina.com.cn/s/blog_3c255a5b0101412v.html
引用
主题:xcode 6制作动态&静态库
连接:http://www.cocoachina.com/ios/20141126/10322.html
引用
主题: ios8 CLLocationManager的变化
连接:http://www.cocoachina.com/bbs/read.php?tid-237203.html
1、代码补全插件
http://alcatraz.io
2、快速搜索
http://codepilot.cc
3、PackageMaker
https://developer.apple.com/downloads/index.action?name=PackageMaker
4、补全UIImage图片的插件
https://github.com/ksuther/KSImageNamed-Xcode
5、代码map
https://github.com/stefanceriu/SCXcodeMiniMap
6、文档式注释生成插件
https://github.com/onevcat/V ...
~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins
-(void)startTime{
__block int timeout=30; //倒计时时间
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_source_t _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0,queue);
dispatch_source_set_timer(_timer,dispatch_walltime ...
- (void)createNewEventAndNewReminder
{
EKEventStore *es = [[EKEventStore alloc] init];
NSDate *now = [NSDate date];
//事件
[es requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) {
if (granted) {
EKAlarm *alarm ...
如下是跳转到系统设置诸多界面的url
prefs:root=General&path=About
prefs:root=General&path=ACCESSIBILITY
prefs:root=AIRPLANE_MODE
prefs:root=General&path=AUTOLOCK
prefs:root=General&path=USAGE/CELLULAR_USAGE
prefs:root=Brightness
prefs:root=General&path=Bluetooth
prefs:root=General&pa ...
到Bee_Precompile.h
找到如下一行:
#define __BEE_UNITTEST__ (1) // 是否UnitTest
关闭它.
#define __BEE_UNITTEST__ (0) // 是否UnitTest
解决.
自从12306.cn抢票插件搞爆github服务器以后,我就再也不能pod update了。于是有了下面的方法。
向/private/etc/hosts 中加入如下代码
#github
207.97.227.239 github.com www.github.com
207.97.227.252 nodeload.github.com
207.97.227.243 raw.github.com
204.232.175.78 documentcloud.github.com
本文转自http://ishalou.com/blog/2012/10/16/how-to-create-a-cocoapods-spec-file/,版权归作者所有。
CocoaPods命令介绍
在上一篇文章中,已经介绍过CocoaPods的几条基本命令。pod setup用于初始化本地第三方库的Spec描述文件,所有的spec文件存都存放在~/.cocoapods目录中。pod install用来安装或删除Podfile文件声明中的第三方依赖库。下面继续介绍其它一些命令。
$ pod list
# 列出所有可用的第三方库
$ pod search query
搜索名 ...
本文转自:http://soulwithmobiletechnology.blogspot.com/2012/07/how-to-use-nsattributedstring-in-ios-6.html,版权归作者所有。
infoString=@"This is an example of Attributed String";
NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:infoString];
NSInteger _stringL ...
mac上显示隐藏文件的命令,如果要隐藏则 -bool false
defaults write com.apple.finder AppleShowAllFiles -bool true
1.文字连接
[文字](http://ace.ajax.org/)
2.栏目标题
标题
=====
3.加入代码
```ObjectiveC
代码写在这里
```
4.显示图片
![Test XIB](https://raw.github.com/faceleg/ACEView/master/Collateral/ace-xib.jpg)
管理第三方库越来越成为每个程序员的基本工作,因为每次都要去加入源码是一件低效的事情。所以高人们就想出了一些办法,比如如下几种。
1.把第三方框架生成可持续使用的.framework框架,有利有弊。
https://github.com/kstenerud/iOS-Universal-Framework
2.麻烦告诉我这个和第一个有什么区别
https://github.com/jverkoey/iOS-Framework
3.使用一款工具CocoaPods
http://re-reference.iteye.com/admin/blogs/1735367
介绍:
开发应用的时候第三方的库是不可缺少的,它能提高开发的效率。一些经常用到的库,在新的项目里用是,你又得手工的Add到项目里,用的到库多起来了,就不方便管理了。CocoaPods这个软件,可以方便的帮你管理Xcode里的第三方的库。
CocoaPods维护着一群庞大的库,可以方便使用。
https://github.com/CocoaPods/Specs
另外如果没有加入到维护中的第三方库,可以fork一份,然后加上去。
https://github.com/CocoaPods/CocoaPods
官网
http://cocoapods.org
参看如下链接
http://www. ...