- 浏览: 172021 次
最新评论
-
东京大师:
您好,您现在从事的是什么职业啊
JetBrains PyCharm 2.0 注册机 -
linzcup:
官网http://www.huluwa.org/icloud/ ...
iCloud存储的API -
linzcup:
本文主要面向使用DateSync的开发者,开发者可通过此文学习 ...
iCloud存储的API -
linzcup:
WINDOWS版与ANDROID版的icloud 客户端API ...
iCloud存储的API -
19870125:
你好。在线播放音频的是怎么做的呢?
iPhone 应用开发:音频播放
文章列表
原文: http://blog.csdn.net/JHorn/archive/2009/09/27/4602491.aspx
方法一
NSDate* toDate1 = [ [ NSDate alloc] initWithString:@"2520-9-26 17:10:00 +0600" ];
NSTimeInterval distance = [ toDate1 timeIntervalSinceNow ];
NSTimeInterval iDat = distance / ( 86400 ) ;
NSLog( @" From now to ...
原文: http://www.sanote.org/?p=274
今天花了点功夫破解cornerstone这个svn工具,说白了就是可以无限试用。
试用软件,要判断你使用此软件是否已经过期,肯定是要在系统里留下点什么东西的,不靠这个,他怎么知道你用了多久,只要找到这些东西将其删除即可。
我用root用户和普通用户分别打开cornerstone,发现普通用户提示已经过期,但是root用户可以正常试用,那就很明确了,那些蛛丝马迹肯定是留在个人目录里,基本可以确定是在Library里,于是:
# mv Library Library.back
然后用普通用户运行cornerstone,发现又可以再次 ...
原文: http://ll-feng.iteye.com/blog/491356
遇到eclipse中的代码提示无效的情况。从网上找了一下终于解决了。
代码提示一般有两种形势
1、点提示无效
经常打一个点就能调出该对象可选的方法列表。哪天不灵了,可以这样解决:
window->Preferences->Java->Editor->Content Assist->Advanced 上面的选项卡Select the proposal kinds contained in the 'default' content assist list: 中把 Other J ...
UIButton 例子
- 博客分类:
- iOS
UICatalog這個例子
例子中得類方法:
+ (UIButton *)buttonWithTitle: (NSString *)title
target:(id)target
selector:(SEL)selector
frame:(CGRect)frame
image:(UIImage *)image
...
package test;
public class Word {
private String word;
private int level;
private int no;
public String getWord() {
return word;
}
public void setWord(String word) {
this.word = word;
}
public int getLevel() {
return level;
}
public void setLevel(int level) {
...
下载地址: http://github.com/nathanday/ndtrie
NDTrie was developed for text completion, using the method -[NDTrie everyObjectForKeyWithPrefix:] will return every
string with the given prefix. For example an NDTrie with the strings {cat, catalog, category, cow, dog} for
everyObjectForKeyWithPrefix:@&quo ...
http://blog.stormyprods.com/2009/10/simple-scrolling-uilabel-for-iphone.html
UITableViewCell 间隔颜色
- 博客分类:
- iOS
- (UITableViewCell *)tableView:(UITableView *)mtableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSInteger row = [indexPath row];
static NSString *CellIdentifier = @"cai-sflist-cell";
UITableViewCell *cell = (UITableViewCell*)[mtableView dequeueReusableCellWithIdentifier ...
原文: http://hi.baidu.com/redefine/blog/item/1bad04c3291b4c39e4dd3be1.html
做一个普通iPhone程序,以一个twitter客户端为例,最花时间的UI部分可能就是UITableView了,而其中最重要的部分是则是UITableViewCell。
以UITableViewCellStyleValue2为例,可以用左侧的Label来显示用户名,右侧的Label显示推的内容。那么接下来要处理的问题就是怎么样来控制单元格高度来完美显示长度不同的推。
左侧的Label叫做textLabel,只要简单的用一个语句加载用户名即可: ...
黑苹果安装选项
※ iATKOS V7 Main System
Bootloader
※Chameleon v2
X86 Patches
※Extra directory
※DSDT
Decypters
※AppleDecrypt
ACPI
※X86 ACPI
※Disabler
驱动根据需要自己选择(将Intel显卡全部选中)
System
SATA/IDE
原文: http://www.5gcity.com/index.php/2009/07/08/iphone-device-debug/
对于真机调试,首先要在苹果网站上注册APP ID,以及购买iPhone Develop Program(iDP) 开发者授权,99美元。然后要创建证书请求CSR,创建步骤如下:
设置OCSP和CRL为关闭状态。
Mac OS 中,打开应用程序,找到 钥匙串访问(Keychain Access)工具打开主菜单 - 证书助理(Certificate Assistant)-从证书代理请求证书(Request a Certificate From ...
原文: http://sunnylocus.iteye.com/blog/223327
在jdk1.4下使用,1.5以上建议使用自带的线程池
线程池的作用:
线程池作用就是限制系统中执行线程的数量。
根据系统的环境情况,可以自动或手动设置线程数量,达到运行的 ...
http://www.google.com/dictionary/json?callback=dict_api.callbacks.id100&q=Athenian&sl=en&tl=zh-cn&restrict=pr,de&c%20lient=te
将 Athenian 替换为您需要查询的单词。
未公开的api,网上转载。
原文: http://b.imi.im/?p=356
先澄清一下, 我也是盗版用户(先自己抽两嘴巴, 但是我已经花了$200买app, 买觉得值得的程序, 而不是apple推崇的冲动式购买, 装盗版是先预览一下这个程序是不是值得买). 在中国做软件, 想不被盗版, 不太现实.
不想自己辛辛苦苦写出来的程序被盗版? 接着看.
首先简单介绍一下原理:
现在大多数的破解苹果验证安装app的办法都会动一个文件, 就是在.app文件夹下的”Info.plist”, 也就是那个程序信息文件.
代码很简单, 不再详细解释什么意思了
1. 检查Info.plist 是否存在 SignerIdentit ...
来自:http://www.cocoachina.com/bbs/read.php?tid-6134-fpage-0-toread--page-1.html
另外还有另外一篇文章:http://lovebirdegg.iteye.com/blog/575293