上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 51 下一页
摘要: 使用VisualSVN Server来实现主要的SVN功能则要比使用原始的SVN和Apache相配合来实现源代码的SVN管理简单的多,上手也没有那么复杂。下面就看看详细的说明VisualSVN Server的下载地址如下,是免费的,随意不必有顾虑http://www.visualsvn.com/server/download/http://www.visualsvn.com/visualsvn/download/SVN 的下载地址如下http://tortoisesvn.net/downloads.html1使用SVN,首先要安装TortoiseSVN,就是上面的SVN下载地址。2安装VIsu 阅读全文
posted @ 2013-01-28 14:52 GreyWolf 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 准备工作: 下载安装git客户端http://code.google.com/p/git-osx-installer/downloads/list?can=3 注册github账号https://github.com/ -->Pricing and Signup -->Create a free account创建ssh: 在local打开terminal: $cd ~/.ssh 检查是否已经存在ssh 如果存在,先将已有的ssh备份,或者将新建的ssh生成到另外的目录下 如果不存在,通过默认的参数直接生成ssh 生成过程如下: $ssh-keygen -t r... 阅读全文
posted @ 2013-01-28 10:14 GreyWolf 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 上图来自 @mattt 对 AFN 的介绍:Everybody Loves AFNetworking And So Can You!. 学习 AFN,简单记录一下以加深自己理解。AFN 的基础部分是 AFURLConnectionOperation,一个 NSOperation subclass,实现了 NSURLConnection 相关的 delegate+blocks,网络部分是由 NSURLConnection 完成,然后利用 NSOperation 的 state (isReady→isExecuting→isFinished) 变化来进行网络控制。网络请求是在一个指定的线程(net 阅读全文
posted @ 2013-01-23 11:56 GreyWolf 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 大家都知道我们的程序在后台运行的时间是10分钟,10分钟后便会停止。但是像实时定位,播放音频,以及网络电话这些功能我们需要在后台持续运行。那么我们就要进行相应的设置。下面具体的例子以定位为例#import <UIKit/UIKit.h> #import <CoreLocation/CoreLocation.h> @interface BackgroundTrackerViewController : UIViewController<CLLocationManagerDelegate> @property(nonatomic, retain) CLLocat 阅读全文
posted @ 2013-01-17 09:59 GreyWolf 阅读(239) 评论(0) 推荐(0) 编辑
摘要: CGFloat BNRTimeBlock (void (^block)(void)) { mach_timebase_info_data_t info; if (mach_timebase_info(&info) != KERN_SUCCESS) return -1.0; uint64_t start = mach_absolute_time (); block (); uint64_t end = mach_absolute_time (); uint64_t elapsed = end - start; uint6... 阅读全文
posted @ 2013-01-17 09:55 GreyWolf 阅读(558) 评论(0) 推荐(0) 编辑
摘要: Name: SpecialK TeamSerial: LMWQ-ITXE-BAQR-WOFN-MKBU-RDFname: msjserial: cvyt-ljbj-ejss-xkcn-jxti-gczname: special kserial: eivk-prlf-nhie-oyfj-abgj-zeb点击下载最新版本v2.0.3还是不喜欢收费的帖子 。,这个keygen应该是可用的,是以前的MacOS X界出名的Omni软件公司(如OmniWeb, OmniGraffle, OmniDiskSweeper等)今天推出它的新项目策划软件OmniPlan。这个软件继续增强Mac OS X在工业界办 阅读全文
posted @ 2013-01-16 23:49 GreyWolf 阅读(1892) 评论(0) 推荐(0) 编辑
摘要: 将持续在此帖分享自己发的所有软件,希望能给大家提供方便.花了10+小时整理,请大家继续支持我 :>【赞**】是一定要下的本人分享の技术贴【赞*****】解决关机无菊花 - 0.1秒关机 (附图+步骤), 无风险【赞*****】软件要求帖 & 分享帖【赞***】如何破解Parallel Dekstop 8 − 3个方法美化,设计,主题【赞*】Lovewallpaper4Mac - 爱壁纸Hd云朵的图标【赞*】顶级Keynote模版——Keynote Pro Tribeca【赞】13款 Keynote 模板 + 2款 Pages 模板 下载【赞】给你的Photo Booth增加更多的 阅读全文
posted @ 2013-01-16 22:53 GreyWolf 阅读(579) 评论(0) 推荐(0) 编辑
摘要: https://github.com/topfunky/hpplehpple读取html文件内容的代码 更新了下拉刷新功能(在iOS代码库中浏览本帖)让技术开发讨论更纯粹!CocoaChina问答荣誉每周、每月龙虎榜!其实我写的不多,也就是汇集一些开源代码,然后实现了一下功能,搜索水区标题,下拉刷新。代码不好看,大家多批评。下拉刷新用到了EGOTableViewPullRefresh ,论坛里面有下载这里用到了一个开源的框架hpple,https://github.com/topfunky/hpple,很轻便,能读取html和xml数据,在用到一点xPath知识就可以了。先下载hpple然后在 阅读全文
posted @ 2013-01-15 18:07 GreyWolf 阅读(379) 评论(0) 推荐(0) 编辑
摘要: xml,json都有大量的库来解析,我们如何解析html呢?TFHpple是一个小型的封装,可以用来解析html,它是对libxml的封装,语法是xpath。今天我看到一个直接用libxml来解析html,参看:http://www.cocoanetics.com/2011/09/taming-html-parsing-with-libxml-1/#comment-3090那张图画得一目了然,很值得收藏。这个文章中的源码不能遍历所有的html,我做了一点修改可以将html遍历打印出来001// NSData data contains the document data002// encodi 阅读全文
posted @ 2013-01-15 17:54 GreyWolf 阅读(281) 评论(0) 推荐(0) 编辑
摘要: http://www.cocoanetics.com/2011/09/taming-html-parsing-with-libxml-1/For the NSAttributedString+HTML Open Source project I chose to implement parsing of HTML with a set of NSScanner category methods. The resulting code is relatively easy to understand but has a couple of annoying drawbacks. You have 阅读全文
posted @ 2013-01-15 17:53 GreyWolf 阅读(274) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 51 下一页