1. 私有Pods集成react-native库

    将react-native移入私有源后,原生语言开发者不再需要安装Node、配置npm等环境。

    2017/06/16 iOS react-native

  2. QQMusic for Mac V5.0.0.3

    功能 1.下载高品质、无损品质的音乐 2.收听会员音乐  

    2017/06/08 Mac

  3. PHP虚拟空间支持多站点

    <!Doctype html> <html xmlns=http://www.w3.org/1999/xhtml> <head> <meta http-equiv=Content-Type content="text/html;charset=utf-8"> <meta content=always name=referrer> <title>welcome</title> </head> <body> <?php $host = $_SERVER['HTTP_HOST']; if (strstr($host, "x.com") ) { require "x/index.html"; } elseif (strstr($host, "y.com") ) { require "y/index.php"; } else { echo "welcome"; } ?> </body> </html>

    2017/05/03 PHP

  4. 谈谈CocoaPods组件二进制化方案

    前言 为了加快编译速度,在工程拆分后,将一些常用库进行二进制化,工程引用库后不需要对源码进行编译。 本文内容适合工程需要二进制化并使用过CocoaPods的朋友,工程的依赖管理可以查看这篇:谈谈iOS多工程依赖

    2017/04/25 iOS

  5. 谈谈iPhone Model的获取方式

    客户端内获取platformString的方式一般为写死默认数据,这样出现的问题是当apple发布新设备而使用旧的客户端,会无法统计到新的Generation,以下的代码使用TFHpple动态的解析https://www.theiphonewiki.com/wiki/Models的HTML,能获取到最新platform。

    2017/03/30 iOS

  6. 谈谈iOS 10.3后DeviceID保持唯一的方式

    源码:MFSIdentifier

    2017/03/24 iOS

  7. Xcode8:Lost connection to “iPhone Name”

    Lost connection to “iPhone Name”. Restore the connection to “iPhone Name” and run “APP Name” again, or if “APP Name” is still running, you can attach to it by selecting Debug > Attach to Process > “APP Name”.

    2016/10/13 iOS

  8. 谈谈iOS启动连续闪退保护方案

    “如果某个实体表现出以下任何一种特性,它就具备自主性:自我修复、自我保护、自我维护、对目标的自我控制、自我改进。” —— 凯文·凯利

    2016/07/26 iOS