摘要:1. 网上先自己创建一个appid,这个ID最好在iphone 网站里手动创建,注意填写indentify com.yourcompany.*部分,info.plist里bundle display name部分应该最好去掉apple自动生成的那些数字,以com.yourcompany开始。2. apple worldwide developer relations certfication au...
阅读全文
09 2010 档案
摘要:http://github.com/guicocoa/GCCalendarhttp://github.com/klazuka/Kalhttp://code.google.com/p/iphonecalhttp://nrg.com.bd/blog/archives/36 come fromhttp://stackoverflow.com/questions/997779/is-there-any-r...
阅读全文
摘要:jemeter 访问外网的时候,如果上网采用代理方式设置,则需要进行代理设置方式启动
阅读全文
摘要:Deploying iPhone Apps to Real Deviceshttp://mobiforge.com/developing/story/deploying-iphone-apps-real-devices IPhone程序发布到应用程序商店的流程 http://blog.csdn.net/dotphoenix/archive/2010/03/03/5342388.a...
阅读全文
摘要:Iphone代码片段导航Iphone开发代码片段1Iphone开发代码片段2Iphone开发代码片段3 1.如果您想在应用里添加提示功能,比如让 iPhone 机身震动,可以使用下面这行代码:AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);2.UItextView设置圆角#import <QuartzCore/QuartzCore.h>用layerUITextView.layer.cornerRadius = 6;UITextView.layer.masksToBounds = YES;角度可以自己调3.viewdidunl
阅读全文
摘要:Java多线程编程总结http://lavasoft.blog.51cto.com/62575/27069 下面是Java线程系列博文的一个编目: Java线程:概念与原理 Java线程:创建与启动 Java线程:线程栈模型与线程的变量 Java线程:线程状态的转换 Java线程:线程的同步与锁 Java线程:线程的交互 Java线程:线程的调度-休眠 Java线程:线程的调度-优先级...
阅读全文
摘要:默认的返回按钮的文字是前一个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...
阅读全文
摘要:Log4J日志管理类使用详解,java开发必备,不多说了一、前言: log4j 是一个开放源码项目,是广泛使用的以Java编写的日志记录包。由于log4j出色的表现, 当时在log4j完成时,log4j开发组织曾建议sun在jdk1.4中用log4j取代jdk1.4 的日志工具类,但当时jdk1.4已接近完成,所以sun拒绝使用log4j,当在java开发中实际使用最多的还是log4j, 人们...
阅读全文