摘要:
http://marshal.easymorse.com/archives/3760翻页效果,类似下面的样子:在电子书应用中会很常见。这里需要两个要点:翻页动画手势上下轻扫(swipe)的处理先说一下轻扫(swipe)的实现,可以参考编写简单的手势示例:Tap了解手势种类。在viewDidLoad方法中注册了对上、下、左、右四个方向轻松的处理方法:- (void)viewDidLoad { UISwipeGestureRecognizer *recognizer; recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:sel 阅读全文
摘要:
作者 angellixf原帖地址http://www.cocoachina.com/bbs/read.php?tid-6209.html关于NSArray,NSMutableArray的使用与内存问题(仅个人在使用过程中体会)偶已几种方式建立说明如下:第一种:FirstArray = [[NSArray arrayWithObjects:@"a",@"b",@"c",nil] retain];NSLog(@"FirstArray%d",[FirstArray count]);NSLog(@"FirstAr 阅读全文
摘要:
http://iphone.ipsw.info/2009/10/nsmutablearray.html- (NSArray *)sortedArrayUsingSelector:(SEL)comparatorParameterscomparatorA selector that identifies the method to use to compare two elements at a time. The method should returnNSOrderedAscendingif the receiver is smaller than the argument,NSOrdered 阅读全文
摘要:
在Mac上截图其实很简单,但很多人只知道Command-Shift-3和Command-Shift-4,却不知道Mac的截图快捷键其实还有很多增强,具体如下:1)Command-Shift-3: 将整个屏幕拍下并保存到桌面。2)Command-Shift-Control-3:将整个屏幕拍下并保存到剪贴板(Clipboard),你可以Command+V直接粘贴到如Photoshop等软件中编辑。3)Command-Shift-4:将屏幕的一部分拍下并保存到桌面。按下这个组合键后,光标会变为一个十字,你可以拖拉来选取拍摄区域。4)Command-Shift-Control-4:将屏幕的一部分拍下并 阅读全文