cropped-59f005ef49dcf.jpg

iOS 字符属性NSAttributedString描述

原地址:http://my.oschina.net/lanrenbar/blog/395909 /* 字符属性 字符属性可以应用于 attributed string 的文本中。 NSString *const NSFontAttributeName;(字体) NSString *const NSParagraphStyleAttributeName;(段落) NSString *const NSForegroundColorAttributeName;(字体颜色) NSString *const NSBackgroundColorAttributeName;(字体背景色) NSString Read More

cropped-59f005ef49dcf.jpg

ios 项目 最近遇到问题记录

1.obj-c swift 混合开发 在引入 “项目名-Swift.h” 时一直报错,在网上也没有找到解决方法,最后在target -> 找到 因为项目不是自己建的,之前可能是被改过项目名,objective-c Generated Interface Header Name  项就是指定的 “项目名-Swift.h”  的名称,以前以为这个文件名是不能改的,现在看来是可以在这里自行修改,改好名后引入成功 2.  ARC 和 非ARC 共存 现在的IOS 项目很多都使用的 ARC (自动引用记数),但很多的第三方库还是使用的 非ARC (手动释放) 的方式 ,在引用这些库时直接就会bui Read More

cropped-59f005ef49dcf.jpg

mac 下安装 php 环境过程

mac 下安装 php 环境过程 memcache 和 memcached 不要弄错了 1.安装xampp 下载、安装、配置: 如出现 root document must be a directory 的错误 可能是 root document 引号是中文的情况 2.memcached 下载、安装、配置 , 网上有大把例子,最方便是用 brew 安装 3.php memcache 扩展安装 先使用 brew 安装 安装过程中如出现了 [txt]configure: error: memcache support requires ZLIB. Use –with-zlib-dir= Read More