`
janedoneway
  • 浏览: 569579 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
From: http://blog.csdn.net/gemmem/article/details/7290125   1. Git概念 1.1. Git库中由三部分组成        Git 仓库就是那个.git 目录,其中存放的是我们所提交的文档索引内容,Git 可基于文档索引内容对其所管理的文档进行内容追踪,从而实现文档的版本控制。.git目录位于工作目录内。 1) 工作目录:用户本地的目录; 2) Index(索引):将工作目录下所有文件(包含子目录)生成快照,存放到一个临时的存储区域,Git 称该区域为索引。 3) 仓库:将索引通过commit命令提交至仓库中,每一次提交都意味着版 ...
From: http://www.startos.com/mac/tips/201010096324.html    在 Mac 系统下最简单最方便的隐藏文件/文件夹的方法,就是一条终端的命令:   chflags hidden (文件/文件夹的相对或绝对路径)   例如:chflags hidden /Users/Jay/Dropbox   重新显示已经隐藏的文件夹命令:   chflags nohidden (文件/文件夹的相对或绝对路径)   例如:chflags nohidden /Users/Jay/Dropbox       隐藏前     隐藏后   ...
写在前头转发请标明转自http://www.geekso.com/ZendStudio9-key/以下方法仅供技术交流学习,请勿非法使用,如长期使用请支持购买正版。正版购买地址:http://shop.zend.com/en/zend-studio-for-eclipse.html你还没有最新安装程序?ZendStudio下载地址:http://www.geekso.com/component/zendstudio-downloads/注册破解步骤第一步:如果已经安装过Zend Studio 9.0.3的,请打开Zend Studio 9.0.3,在菜单中“help>Unregist ...

UML tools for mac

  BOUML:http://www.bouml.fr/ ArgoUML:  http://argouml.tigris.org/   Dia :  https://live.gnome.org/Dia    http://dia-installer.de/download/macosx.html

AFNetworking

AFNetworking on github: https://github.com/AFNetworking/AFNetworking     AFNetworking is a delightful networking library for iOS and Mac OS X. It's built on top of NSURLConnection, NSOperation, and other familiar Foundation technologies. It has a modular architecture with well-designed, feature- ...
From: http://www.cocoachina.com/newbie/basic/2012/0109/3845.html     本文由论坛会员fdd2613690分享 1 xcode4.2,如果是简体中文,把国际化的文件放到zh-Hans.lproj中就显示正常了。如果放到zh.lproj中就不可以   2 字符串 1)在项目的“supporting files”目录中右键“new file”然后在弹出窗口左侧选择IOS的resource项,在右侧就可以看到“String File”的图标。创建这个文件,新建的文件名要写成“Localizable.stri ...
From: http://www.techotopia.com/index.php/An_iPhone_Graphics_Drawing_Tutorial_using_Quartz_2D     Contents  [hide] 1 The iPhone Drawing Example Application 2 Creating the New Project 3 Creating the UIView Subclass
From: http://my.oschina.net/chen106106/blog/48877       转场动画是一种动画对象,可以被附着在已经存在的视图上。 需导入Quartz Qore框架   源码打印?
From: http://my.oschina.net/ahuaahua/blog/15182     保存已知图片:   UIImageWriteToSavedPhotosAlbum([UIImage imageNamed:photoName], self, @selector(image:didFinishSavingWithError:contextInfo:), nil);  
From: http://bbs.dospy.com/thread-13077084-1-404-1.html DEFY刷机。2.3.7系统包、有图。小白教程,全程有图,绝对小白操作!飞鹏教你刷! 说明:最近本人在开网店,很忙,很多朋友加我QQ,但是我想说:跟着贴走是正确的。很多朋友 ...

Wrapping Conventions

Wrapping Conventions When using the key-value coding methods to access properties whose values are not objects the standard key-value coding wrapping conventions support, the following wrapping conventions are used: C Type Class ...
(1)使用隐式动画会直接改变layer的属性值,如: imageView.layer.opacity = 0.3;   (2)使用显式动画,动画结束时不影响动画前的layer属性值,如:       CABasicAnimation *opacityAnim = [CABasicAnimation animationWithKeyPath:@"opacity"];     opacityAnim.fromValue = [NSNumber numberWithFloat:1.0];     opacityAnim.toValue = [NSNumber numb ...
From: http://www.raywenderlich.com/2696/how-to-debug-memory-leaks-with-xcode-and-instruments-tutorial     This is the second article in a three-part series on working with memory in Objective-C on the iPhone. In the first part of the series, we covered how to manage memory in Objective-C by using ...
From: http://www.raywenderlich.com/2712/using-properties-in-objective-c-tutorial   This is the third article in a three-part series on working with memory in Objective-C on the iPhone. In the first article in the series, we covered how to manage memory in Objective-C by using instance variables ...
From: http://mobile.51cto.com/iphone-267455.htm   找了很长时间IPhone下多线程的编程的内容, 用到的类是UIKit的中NSThread.。   在google过程中,发现很多文都惊喜地标题着类似< 多线程的iOS4来了>, 这些想正向引导一下, iOS4的亮点在于多任务,一个任务为一个进程,也叫多进程, 而多线程在早期的IPHONEOS上都是有的.   IPHONE OS中任务的概念是一个应用, 在一个时间你只能做一件事情, 即不能同时玩游戏,同时上QQ. 而多任务的时候是可以这么做的.   流程大概如下: ...
Global site tag (gtag.js) - Google Analytics