2012年4月22日

Xcode 中使用Github

摘要: 第一步:为你的mac添加认证,使得它能够连接到github。参考http://help.github.com/mac-set-up-git/ 一步一步操作即可====================================================================第二步:新建项目先在github里面添加一个Repository,通过http://github.com/首页的new Repository连接进入,填写相关的项目信息,创建即可。创建后会跳转到初始项目界面,先暂停,在第三步再使用这个界面。在mac上使用xcode新建一个项目,为项目使用git,创建过程中 阅读全文

posted @ 2012-04-22 21:37 cokecoffe 阅读(5026) 评论(1) 推荐(0) 编辑

Foundation Kit

摘要: 1.NSRange 1: typedef struct _NSRange 2: 3: { 4: 5: unsigned int location; 6: 7: usingned int length; 8: 9: }NSRange;三种创建NSRange的方法: 1: 1.NSRange range; 2: 3: range.location = 17; 4: 5: range.length = 4; 6: 7: 2.NSRange ra... 阅读全文

posted @ 2012-04-22 16:58 cokecoffe 阅读(121) 评论(0) 推荐(0) 编辑

导航