2013年7月29日

九宫格解锁的实现

摘要: 先来看一下效果图我们用一个数组来记录下目标点(即图中的九个点)的view,再在每次的touchesMoved方法中对这个数组遍历,在各个点之间画线.主窗体上覆盖一个UIImageView控件来显示画出的线.h文件 1 #import 2 3 @interface VcLock : UIViewC... 阅读全文

posted @ 2013-07-29 22:05 ChingyZhang 阅读(483) 评论(0) 推荐(0) 编辑

2013年7月15日

UINavigationControlle类详解

摘要: UINavigationController Class ReferenceInherits fromUIViewController:UIResponder:NSObjectConforms toNSCoding (UIViewController)UIAppearanceContainer (U... 阅读全文

posted @ 2013-07-15 21:22 ChingyZhang 阅读(755) 评论(0) 推荐(0) 编辑

2013年7月12日

IOS项目中使用全局变量

摘要: 1 // 2 // GlobalVar.h 3 // 4 5 #import 6 7 @interface GlobalVar : NSObject{ 8 NSString * strTest; 9 }10 @property(strong,nonatomic)NSString *... 阅读全文

posted @ 2013-07-12 16:19 ChingyZhang 阅读(2129) 评论(0) 推荐(0) 编辑

导航