ios 开源代码

news/2024/7/7 10:55:25
1、开源代码
http://www.oschina.net/iOS/codingList/365/ios-button
 
http://www.devdiv.com/iOS_iPhone-iOS6%E6%96%B0%E7%89%B9%E5%BE%81%EF%BC%9A%E5%8F%82%E8%80%83%E8%B5%84%E6%96%99%E5%92%8C%E7%A4%BA%E4%BE%8B%E6%B1%87%E6%80%BB-thread-127965-1-1.html
 
http://code4app.com/category
 
http://cocoachina.com/ 大量iPhone开发资料,教学,经验,还有自曝。 

http://www.javaeye.com/forums/board/mobile iPhone开发论坛,人气鼎盛,大量自曝,还有Android的讨论 

http://developer.apple.com/iphone/ 苹果iPhone开发官方主页,提供大量实例、文档和教学视频 

http://www.stanford.edu/class/cs193p/ 斯坦福大学的iPhone课程,2009年4~6月,有pdf和视频下载

http://bit.ly/RuaKq 飞机游戏iFighter的作者dr_watson写的iPhone游戏开发经典教学系列,有源码 

http://www.iphoneside.com/ iPhone达人的博客,很多有价值的资源下载,新闻和教程 

http://lichen1985.com/blog/ iPhone应用的作者,雨雪霏霏的iPhone博客,很多开发手记和心得 

http://blog.liuhongwei.cn/category/iphone/ iPhone开发博客,提供教学文章,经验分享,还有GAE 

http://www.javaeye.com/topic/422948 iPhone日本市场高手的自曝贴,第1个月就赚了2千刀,大量详细的数字和图片 

http://dev.iphonetw.net/ 台湾iPhone开发者论坛,有些教学文章和讨论 声明:JavaEye文章版权属于作者,受法律保护。没有作者书面许可不得转载

http://www.aisidechina.com/forum/

http://stackoverflow.com/

 

转载于:https://www.cnblogs.com/alamps/p/5512661.html


http://www.niftyadmin.cn/n/4610381.html

相关文章

Log4J配置文件详解(转载一)

2019独角兽企业重金招聘Python工程师标准>>> 网站要发布了,为了跟踪一些日志,需要用到log4j,于是就研究了一下log4j的配置 先贴自己用的一个配置源文件 log4j.properties log4j.rootLoggerDEBUG, CONSOLE, FILE ## for console …

1063 Set Similarity (25分)【set】

1063 Set Similarity (25分) Given two sets of integers, the similarity of the sets is defined to be N​c​​/N​t​​100%, where N​c​​ is the number of distinct common numbers shared by the two sets, and N​t​​ is the total number of distinct numbers …

PostgreSQL 多国语言支持的实现

1、先了解:GNU gettext 2、以 pg_config 为例,打开 src/bin/pg_config/nls.mk # src/bin/pg_config/nls.mk CATALOG_NAME pg_config AVAIL_LANGUAGES cs de es fr it ja ko nb pl pt_BR ro ru sv ta tr zh_CN zh_TW GETTEXT_FILES pg_config.…

1060 Are They Equal (25分)【string】

1060 Are They Equal (25分) If a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0.12310​5​​ with simple chopping. Now given the number of significant digits on a machine …

Node.js中的HTTPS示例

需要openssl的支持, openssl本身不提供windows的安装程序,可以按照如下的步骤进行安装: (参考https://conetrix.com/Blog/how-to-install-openssl-on-windows-7,并复制到下面) How-to Install OpenSSL on Windows 7 Download and …

动态规划专题详细总结(常见简单类型)

什么是动态规划 动态规划(Dynamic Programming, DP)是一种用来解决一类最优化问题的算法思想。简单来说,动态规划将一个复杂的问题分解为若干个子问题,通过综合子问题的最优解来得到原问题的最优解。需要注意的是,动态规划会将每个求解过的子…

MySQL数据库无法启动的简单排错

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://dgd2010.blog.51cto.com/1539422/1406691 一般来说有经验的管理员在部署操作系统时通常会将操作系统本身与应用软件分离,将两…

7-43 字符串关键字的散列映射 (25 分)

7-43 字符串关键字的散列映射 (25 分) 给定一系列由大写英文字母组成的字符串关键字和素数P,用移位法定义的散列函数H(Key)将关键字Key中的最后3个字符映射为整数,每个字符占5位;再用除留余数法将整数映射到长度为P的散列表中。例如将字符串…