最新文章列表

开发环境篇

本人必须承认,在iPhone之前没有接触过任何与苹果相关的产品,所以写下的东西都是基于目前的认识,非常基础,存在未来被修改的可能。如发现有误导 ...
basictk 评论(0) 有1956人浏览 2009-08-25 21:33

用上 Snow Leopard

今天下载了 SL10A432 的映像,6.74 GB,正想明天去找张双层的 DVD 来刻,同学发来信息提醒说可以用移动硬盘安装。于是赶紧行动: 确保移动硬盘有一个空闲的分区,大小必须可以放雪豹的安装文件。接上这个移动硬盘后,打开磁盘工具(Disk Utility),把这个分区格式化成苹果的分区(HFS)。 然后点“恢复”(restore)标签,源磁盘那里选择下载的那个映像文件,目的磁盘选择刚才我 ...
zhaohuan 评论(0) 有1641人浏览 2009-08-22 21:11

Tips For Using Xcode

VIA http://www.mobileorchard.com/14-essential-xcode-tips-tricks-and-resources-for-iphone-devs/     Xcode is big. Apple’s Xcode Workspace Guide, a terse inventory of its features, is 116 pages. Xc ...
xhanxhanxhan 评论(0) 有1279人浏览 2009-08-18 18:09

C语言中也可以方便地进行遍历

  请先看一个例子,如下: void test() { ACL_HTABLE *table = acl_htable_create(10, 0); /* 创建哈希表 */ ACL_HTABLE_ITER iter; /* 哈希表的遍历变量 ...
zsxxsz 评论(2) 有1778人浏览 2009-08-16 21:45

在xcode中拷贝图片

Create an images directory Create an images Group in Xcode Right-click the group and Get Info "Choose..." to set the group's directory to be your images directory
auauau 评论(0) 有1171人浏览 2009-08-16 09:23

加入OpenRemote开发团队(一)

    昨天(2009-08-12),我依依不舍地离开了"仁和GPS"项目组,正式加入名声显赫的"OpenRemote"开发团队.     昨天,Dan(PM)给我了一些与这个项目相关的文档,以及聊了下当前项目的情况和现状.然后,我就开始搞了下环境(GWT-elipse插件, Cleanup-elipse插件, jautodoc-elipse插件),熟悉整个 ...
handy.wang 评论(2) 有3648人浏览 2009-08-13 13:31

给sqlite数据库加密的两种方法

一个是采用SQLCipher Need to store sensitive information in your app? SQLCipher extends SQLite enabling transparent encryption and decryption of data using AES. Its source is available on Github. SQLite ...
auauau 评论(0) 有2450人浏览 2009-08-09 09:37

Three20 教程和模板

Three20 是在Facebook 的 iPhone 程序剥离出来的框架,在iPhone OS 的基础上添加了不少强大的特性。 类似RAILS 的ROUTES 功能,能轻松的在各个控制器中切换 类似HTML 的布局方式 强大的HTTP通讯 自定义视图外观 可以在 Github 中找到它 , 不过使用教程实在少得可怜。 除了官方提供的两个例子,这里还有几篇:   How to u ...
xhanxhanxhan 评论(0) 有5184人浏览 2009-08-07 22:53

become an xcode 续

第七章:循环 1:for  循环次数必须是整数,因为你没有办法循环2.7次 int x; for (x = 1; x <= 10; x++) { NSLog(@"Julia is a pretty actress."); } NSLog(@"The value of x is %d", x);     2:while () { }和do ...
xiaozhao-521 评论(0) 有2123人浏览 2009-08-06 11:34

become an xcoder

第一章:程序是一系列指令 1.1:程序命名规则     最重要的一条规则是你不能使用Objective-C语言中的保留字(也就是在Objective-C语言中已经有了 特殊含义的单词)。使用简明的单词组成变量名,比如pictureWidth,通常是安全的。为了保证变 量名的可读性,推荐在其中使用大写字母,这条规则可以让你程序减少错误。 下一条规则是一个变量名不能以数字开头,但数字可以出 ...
xiaozhao-521 评论(0) 有1574人浏览 2009-08-06 11:03

解决mac上一个傻问题:command not found

XCODE 在使用SVN上曾经出现这个错误 sudo ssh : command not found 很奇怪,系统的命令居然找不到了。 后来只能换了种方法绕了过去。 今天编译COCOS-IPHONE document 时候再次出错,提示cp 都找不到了。   这次突然想起是否是配置文件问题。xcode没找到相关路径, .profile 一切正常。 突然想起自己曾经在很久以前 写的一篇博客 ...
xhanxhanxhan 评论(0) 有3549人浏览 2009-07-23 19:37

Hello,iPhone ! Hello world ! --iPhone 开发入门工程代码全解析

作者:Whhema 原贴地址:http://www.devdiv.net/home/space-6680-do-blog-id-262.html 今天偶来说说iphone的helloworld。 首先从官网上下载源码包,解压后结构如下: . │  Ba ...
DevDiv.net 评论(0) 有4963人浏览 2009-07-23 11:07

用textmate写objective-c

via http://iphonedevelopertips.com/xcode/textmate-and-xcode.html     <object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="460" height="460" codeba ...
xhanxhanxhan 评论(0) 有1533人浏览 2009-07-23 00:03

修改XCODE 3.X 項目名

How to rename project in Xcode 3.x I thought this would be a simple thing to do, but apparently not. There’s no option to copy the state of the project as it is and continue working on it under th ...
xhanxhanxhan 评论(0) 有1220人浏览 2009-07-16 09:52

COCOA 内存管理

写了两周IPHONE上的程序,回头看斯坦福的教程感觉几乎每句话的都能听懂了嘿嘿。 今天提了个问题 为什么id<sthDelegate> delegate 用的是assign 下文很完美的回答了这点。 iPhone开发内存管理 by Robin Lu on Mar.03, 2009, about iphone , memory 开 发iPh ...
xhanxhanxhan 评论(0) 有1897人浏览 2009-07-15 20:22

idea resource

----------------------------------------------------------- http://unsolicitedfeedback.com/2009/01/09/cssedit-color-theme-for-xcode-and-intellij-ideia/ ----------------------------------------------- ...
astroxl 评论(0) 有726人浏览 2009-07-15 19:49

Using SCM with SVN 1.6 and Xcode 3.1.2

Version control software is very important to use to keep track of changes. Today I was testing out the Xcode SCM (Software Configuration Management) integrated tools with SVN today and I had a few i ...
beike 评论(0) 有1912人浏览 2009-07-01 13:06

修改 xcode company name

  修改 xcode company name   defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "wangkai.com";}'
hqman 评论(0) 有1271人浏览 2009-06-30 18:08

两部 iPhone 演示机终于寄出

经过两个星期的学习,半个星期的开发。两部装上demo app的AT&T iPhone手机终于在今天下午送到机场,坐上3:00pm的Fedex飞机,飞往明天presentation的地方进行演示。时间太紧了,昨天下午application还是狂crash,只好忍痛割掉一个feature,中午刚装上最新测试版本,最后一秒钟还在测试阿。希望明天老板们的演示顺利啦。   总结一下iPhone开发 ...
Anxonli 评论(0) 有2014人浏览 2009-06-11 13:25

初试freemarker->进阶(二)

初试freemarker->进阶(二): 1, FTL指令规则 在FreeMarker中,使用FTL标签来使用指令,FreeMarker有3种FTL标签,这和HTML标签是完全类似的. 1,开始标签:<#directivename parameter> 2,结束标签:</#directivename> 3,空标签:<#directivename paramete ...
shshy39 评论(0) 有1311人浏览 2009-06-10 17:34

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) .net(54785) 编程(39454) JSP(37542) 数据结构(36423) Eclipse(31254) PHP(29988) F#(26079) 算法(24867) 脚本(19840) J#(18922) JDBC(17888) ASP(17480) JDK(14881) JVM(14450)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics