摘要:
默认的返回按钮的文字是前一个view的title,如果需要修改默认的返回名字,需要再前一个画面里设置。比如可以再viewDidLoad里设置UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil... 阅读全文
摘要:
The default Mac OS X installation has the Unix "root" account disabled. This is generally a good thing, because the casual user does not need all the powers granted to this "superuser" account. But it... 阅读全文
摘要:
有一种思路叫寄生...我相信是懒人推动了世界的发展,既然iphone有了自己的软件盘,我们什么还要自己实现其功能呢。so,只要寄生在上面就行了。感谢alan转载的文章给的灵感。http://www.cocoachina.com/bbs/read.php?tid-3999.html思路:1.用静态方法找到应用程序当前view(window)中的UIKeyboard的view2.在键盘的view上帖上... 阅读全文
摘要:
Ok.. so i created my app using the tabbarcontroller template. I can set badges in the view that's loaded by the tabbaritem, but i can not for the life of me set it in the appdelegate. Here is som... 阅读全文
摘要:
/*=======================================================NSKeyedArchiver========================================================*/NSString *str = @"abc";NSString *astr = @"efg";NSArray *Array = [NSArr... 阅读全文
摘要:
导读:对于开发人员来说,阅读其他人的优秀代码是一种绝佳的内功提升方式。以Flash/Flex教程而知名的Ntt.CC网站最近收集了50多个开源的iPhone软件,极具学习价值。 苹果的iPhone应用商店获得了前所未有的成功,在线上已经有超过20万的应用程序。我们在这里选取了50个经典的开源的iPhone应用及其源码下载,供iPhone开发者们学习分享。 ABC123:一个挑战记忆力的游戏 源码下... 阅读全文
摘要:
//// ActivityView.h//// Copyright 2010. All rights reserved.//#import <UIKit/UIKit.h>#define kAnimationDurationStart 2#define kAnimationDurationEnd 1@interface ActivityView : NSObject { IBOutlet... 阅读全文
摘要:
1、将文件checkout到本地目录svn checkout path(path是服务器上的目录)例如:svn checkout svn://192.168.1.1/pro/domain简写:svn co2、往版本库中添加新的文件svn add file例如:svn add test.php(添加t... 阅读全文
摘要:
http://blog.csdn.net/dadalan/archive/2009/06.aspx 阅读全文
摘要:
日期一直是比较重要的数据,日期相关的运算也很重要。/* * Created on 2009-8-11 * Copyright 2009 by www.xfok.net. All Rights Reserved * */ package net.xfok.tools; import java.text.ParseException; import java.text.ParsePosition; i... 阅读全文