
iOS
文章平均质量分 60
随雨_而来
三十而知天命, 我呸, 我命由我不由天
展开
-
iOS Objective-C 正则表达式指南
(转自:http://blog.youkuaiyun.com/waterforest_pang/article/details/39153355, 感谢作者) 1. 语法 2. 模式 2.1 Search [objc] view plaincopy + (NSString *)getDomainOfEmailAddr转载 2015-01-30 10:31:58 · 803 阅读 · 0 评论 -
ASIHttpRequest库简介、配置和安装
(转自:http://www.dreamingwish.com/frontui/article/default/powerful-asihttprequest-library-a.html, 感谢作者) 使用ASIHTTPRequest可以很方便的进行一下操作: 同步/异步方式下载数据 定义下载队列,让队列中的任务按指定的并发数来下载(队列下载必须是异步的) 提交表单,文件上传转载 2015-01-30 13:19:42 · 743 阅读 · 2 评论 -
iOS中源码文件的编译和链接
三、编译 1、什么是编译:将C源程序翻译成计算能识别的0和1 2、使用什么编译器:Xcode3是用GCC,XCode4使用LLVM编译器(前端clang) 3、如果使用clang编译程序? * 在终端中输入:CC -c 文件名.c。(cd进入当前目录下) * 编译成功,会生成.o目标文件。 4、编译器的错误和警告功能转载 2015-03-30 17:12:53 · 1833 阅读 · 0 评论 -
iOS系统的宏
ifdef __IPHONE_OS_VERSION_MIN_REQUIRED //表示在iPhone系统下,不包含Mac系统ifdef __MAC_OS_X_VERSION_MIN_REQUIRED //表示在Mac系统下,不包含iPhone系统原创 2015-04-20 11:34:27 · 664 阅读 · 0 评论 -
iOS SDK Release Notes for iOS 8.3 Beta 4 节选(UIKit)
UIKit Note 注意 When linking against iOS 8.3, any code that relies on layout information (such as the frame) of a UIButton subview when the button is not in the window hierarchy will need to原创 2015-04-16 13:50:21 · 848 阅读 · 0 评论 -
自定义NSLog
#if DEBUG #define NSLog(FORMAT, ...) {\ NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];\ [dateFormatter setDateStyle:NSDateFormatterMediumStyl原创 2015-04-16 18:03:01 · 1061 阅读 · 0 评论