
Iphone
SarahZuo
这个作者很懒,什么都没留下…
展开
-
XCode设置scm
1。设置SCM在XCode-》preferences-》SCM-》+-》Repositories-》Name:http://svn.company.comURL:http://user@sun.compamy.comScheme:httpHost:svn.company.comuser:MyUserNamepassword:myPassWord2:设置gameframe在XCod原创 2012-12-10 09:42:39 · 403 阅读 · 0 评论 -
iOS常用加密方法(aes、md5、base64)
iOS常用加密方法(aes、md5、base64) 1、AES加密NSData+AES.h文件 // // NSData-AES.h // Smile // // Created by 周 敏 on 12-11-24. // Copyright (c) 2012年 BOX. All rights re转载 2013-03-12 14:38:50 · 1042 阅读 · 0 评论 -
Reading notes : UITableView class reference
1. Single column, allows vertical scrolling only. 2. When you create a UITableView instance you must specify a table style, and this style cannot be changed.In the plain style, a tableView原创 2013-01-24 11:04:28 · 400 阅读 · 0 评论 -
SDWebImage 异步加载网络图片 缓存…
摘自:http://www.cnblogs.com/lovecode/articles/2246384.htmlSDWebImage托管在github上。https://github.com/rs/SDWebImage这个类库提供一个UIImageView类别以支持加载来自网络的远程图片。具有缓存管理、异步下载、同一个URL下载次数控制和优化等特征。使用示范的代码:UI转载 2012-12-10 09:43:27 · 474 阅读 · 0 评论 -
NS VS UI
iOS OSXNS- Foundation / additions ---- AppKit / Foundation / additions---- UI- UIkit原创 2012-12-10 09:43:31 · 1045 阅读 · 1 评论 -
iOS文件操作
【原】IOS文件操作在ios中,所有程序都运行在自己沙箱中,即只能访问自己程序的文件夹,不能访问其他程序的文件夹。 注意程序文件的路径。在Application文件夹里面放着所有在模拟器上运行过的程序程序文件。长长的编码是为了唯一地标识一个程序在每个程序的文件夹里面,Documents文件夹是存放应用程序(app)的地方,而Library文件夹是存放应用程序原创 2012-12-10 09:43:41 · 407 阅读 · 0 评论 -
Method Being deprecated
Being deprecated" title="Method Being deprecated">Being deprecated doesn't meant it stopped working, it just means that you should prefer an alternative but the old way is still valid.But using原创 2012-12-10 09:43:55 · 502 阅读 · 0 评论 -
iOS网络编程之同步、异步、请求队…
摘自:http://mobile.51cto.com/iphone-321183.htm1.同步意为着线程阻塞,在主线程中使用此方法会不响应任何用户事件。所以,在应用程序设计时,大多被用在专门的子线程增加用户体验,或用异步请求代替。- (IBAction)grabURL:(id)sender { NSURL *url = [NSURL URLWithStrin原创 2012-12-10 09:43:20 · 447 阅读 · 0 评论 -
iOS框架
iOS框架 最新的iOS4.0以Darwin 10.3.1为基础,所以开发iPhone或iPad程序与Mac OS X类似。 iPhone OS 框架层次图 Core OS和CoreServices层包含了iPhone操作系统最基础的工作,如:文件读取、系统服务和网络通信等等。这些层原创 2012-12-10 09:42:10 · 342 阅读 · 0 评论 -
iPhone中的info.plist文件
原文地址:iPhone中的info.plist文件作者:绋嬪簭鍛plist文件,Property List 文件,一般都是xml文件格式,用于描述应用软件主要包括如下:关键字类型是否必须摘要CFBundleDevelopmentRegionStringNo该束的地区。通常对应于作者的母语。CFBundleDisplayNameStringNo转载 2012-12-10 09:41:28 · 407 阅读 · 0 评论 -
NSLog的格式
NSLog的格式如下所示: * %@ 对象 * %d, %i 整数 * %u 无符整形 * %f 浮点/双字 * %x, %X 二进制整数 * %o 八进制整数 * %zu size_t * %p 指针 * %e 浮点/双字 (科学计算) * %g 浮点/双字 * %s C 字符串 * %.*s Pas原创 2012-12-10 09:43:24 · 383 阅读 · 0 评论 -
iOS基础
转自: http://www.cnblogs.com/2018/archive/2011/01/17/1937112.html 系统规格iPhone的规格Each is a 4.7- or 4.8-ounce computing device. Each contains a620 MHz ARM CPU that has been underclocked to improve原创 2012-12-10 09:43:16 · 416 阅读 · 0 评论 -
发现一个很好的关于iphone开发的博…
http://www.cnblogs.com/likwo/archive/2011/06/18/2084192.htmlhttp://www.cnblogs.com/likwo/tag/iphone/像强人学习,多记录,多分析,多思考。加油~本周iphone学习目标 1:学习第五课视频2:学习官方相关文档3:阅读至少三篇相关技术文档。原创 2012-12-10 09:42:43 · 628 阅读 · 0 评论 -
iphone程序编译到真机
develop模式:1、overview 选择 Device-x.x|Debug2、工程 -- info -- build -- code signing -- any iphone OS Device/ iphone developer:(开发证书)3、链接Device, build and go.adhoc模式:1、overview 选择 Device-x.x|Distribut原创 2012-12-10 09:42:41 · 580 阅读 · 0 评论 -
从 Objective-C 里的 Alloc 和 AllocWithZone 谈起
从 Objective-C 里的 Alloc 和 AllocWithZone 谈起FROM: http://www.justinyan.me/post/1306一、问题起源一切起源于Apple官方文档里面关于单例(Singleton)的示范代码:Creating a Singleton Instance.主要的争议集中在下面这一段:?转载 2013-03-18 10:23:04 · 625 阅读 · 0 评论