摘要:
I want to invoke a selector of a method that has the usual NSError** argument:-(int)getItemsSince:(NSDate*)whendataSelector:(SEL)getDataSelector error:(NSError**)outError { NSArray*data=nil; if([service respondsToSelector:getDataSelector]){ data=[service performSelector:getDataSelector withObject:wh 阅读全文
摘要:
国外知名网站stackoverflow上有一个问题调查: 哪本书是对程序员最有影响、每个程序员都该阅读的书?,这个调查已历时两年,目前为止吸引了153,432人访问,读者共推荐出了478本书(还在增加),其中最火的一本书《Code Complete》被顶了1306次。如果你是个程序员,你一定有兴趣看看这些书里你都看过几本,如果你一本没看过的话,我也不好说什么,也许你是个天才,但我相信大多数人都知道,你在学校里根本学不到什么真正的工作中需要的知识,我们毕业后能帮助我们在公司中胜任工作的老师就是这些优秀的书籍,一本好书可以改变一个人的一生。下面是这个调查中排名靠前的书的一个简单的清单:第一名:13 阅读全文
摘要:
http://www.cocoachina.com/bbs/simple/?t29812.html大家帮忙看看这里哪里有泄露- (void)viewDidLoad {NSMutableArray *myrssList = [[NSMutableArray alloc] initWithCapacity:1];self.rssList = myrssList;[myrssList release];NSString *paths = [[NSBundle mainBundle] resourcePath];NSString *xmlFile = [paths stringByAppendingP 阅读全文
摘要:
Thefollowinglanguagestringsarerecognizedbysetlocale.Anylanguagenotsupportedbytheoperatingsystemisnotacceptedbysetlocale.Thethree-letterlanguage-stringcodesareonlyvalidinWindows98,WindowsMe,WindowsNT,Windows2000,andWindowsXP.PrimarylanguageSublanguageLanguagestringChineseChinese"chinese"Chi 阅读全文
摘要:
作者 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://marshal.easymorse.com/archives/3760翻页效果,类似下面的样子:在电子书应用中会很常见。这里需要两个要点:翻页动画手势上下轻扫(swipe)的处理先说一下轻扫(swipe)的实现,可以参考编写简单的手势示例:Tap了解手势种类。在viewDidLoad方法中注册了对上、下、左、右四个方向轻松的处理方法:- (void)viewDidLoad { UISwipeGestureRecognizer *recognizer; recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:sel 阅读全文
摘要:
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:将屏幕的一部分拍下并 阅读全文
摘要:
http://www.cocoachina.com/bbs/read.php?tid-48666-keyword-UIButton.html初始设置:UIImage *bgImg1 = [UIImage imageNamed:@"Selected.png"];UIImage *bgImg2 = [UIImage imageNamed:@"Unselected.png"];[btn setImage:bgImg2 forState:UIControlStateNormal];[btn setImage:bgImg1 forState:UIControlSt 阅读全文
摘要:
http://disanji.net/2010/12/18/ios-realize-animation-effect/由Fgamers发表于2010 年 12 月 18 日89 次阅读 评论 (0)ios中最简单的动画效果,是没有关键帧的,比如左右移动、上下跳动、旋转和缩放。关键帧要稍微复杂一点,要设置路径等。iOS可以在不借助OpenGL 2D等重型库的情况下实现上述简单的动画效果。编写起来十分简单。左右移动上下移动的情况类似。代码如下:123456789101112131415161718192021222324252627282930313233343536373839404142434 阅读全文