Apple Mach -O Linker Error

This problem is mainly caused by DUPLICATIONS:

1> duplications of .m Files
goto TARGETS->Projiect->Build Phases->Compile Sources >
check duplicated .m files, keep one and remove others.

2> duplications of variables’ names
check all your variables defined throughout your project >
change duplicated names.

GOOD LUCK 🙂

WordPress国内无法访问解决办法

由于WordPress内置很多主题都采用了Google公共库或字体等导致国内无法访问该网站。
解决办法如下:

利用WordPress插件

安装以下插件即可:
搜关键词 [Useso take over Google]

如果只想替换字体部分,使用以下插件即可:
搜关键词 [Disable Google Fonts]

手动替换

Google公共库替换
1、首先在程序源代码中找到调用Google前端公共库的地址,比如:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js?ver=3.4.2'></script>

2、将Google前端库的域名 ajax.googleapis.com 修改为:ajax.useso.com 即可,如下所示:
<script type='text/javascript' src='http://ajax.useso.com/ajax/libs/jquery/1.7.2/jquery.min.js?ver=3.4.2'></script>

3、我们会自动将Google前端公共库的JS资源缓存在360网站卫士全国的CDN节点上。

Google字体替换
这个同上,只要把调用Google库中的域名googleapis替换成useso就可以了!