今天在引入第三方framework时,我按照以前的方法,把framework加入到了下图的地方: 默认是required的,之后程序就crash了,报错dyld: Library not loaded,之后我把required 改成了optional,这次不crash了,但是运行时出错,库中的对象无 ...
分类:
移动开发 时间:
2016-05-20 19:12:14
阅读次数:
194
The No1. is because, service worker only take control after it is loaded. But the first time we go to the page, service worker actually is not there, ...
分类:
其他好文 时间:
2016-05-15 21:42:14
阅读次数:
246
dyld`dyld_fatal_error: -> 0x120069088 <+0>: brk #0x3 dyld: Library not loaded: @rpath/SDWebImage.framework/SDWebImage Referenced from: /var/containers ...
分类:
其他好文 时间:
2016-05-15 12:30:36
阅读次数:
209
right click on your project, select properties, chose debuggin tab on the left column, and change the debug type to "manage only" 右击工程->properties->de ...
分类:
其他好文 时间:
2016-05-13 17:21:07
阅读次数:
166
document.readyState的几种状态 0-uninitialized:XML 对象被产生,但没有任何文件被加载。 1-loading:加载程序进行中,但文件尚未开始解析。 2-loaded:部分的文件已经加载且进行解析,但对象模型尚未生效。 3-interactive:仅对已加载的部分文 ...
分类:
Web程序 时间:
2016-05-13 11:28:14
阅读次数:
190
在Octave中加载图像并转成灰度图时,发现rgb2gray()函数不存在,上网搜了一下,stackoverflow上给出了相关解释,如下:
The problem is that you didn't load your packages. When you type pkg list you can find which ones are loaded by an asterisk in f...
分类:
其他好文 时间:
2016-05-12 20:03:54
阅读次数:
1060
*** ERROR *** The PHP configuration loaded file is: - should be: d:/wamp/bin/apache/apache2.4.17/bin/php.ini or d:/wamp/bin/php/php5.6.15/phpforapache.ini。
phpMyAdmin-Error :The mbstring extension is missing. Please check your PHP configuration....
分类:
其他好文 时间:
2016-05-12 17:58:01
阅读次数:
161
1.检测Apache是否支持mod_rewrite 通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有 apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。 如果没有 ...
分类:
Web程序 时间:
2016-05-11 19:29:29
阅读次数:
178
参考http://www.cnblogs.com/shenggege/p/5165616.html 最近从unity5.1.3升级到5.3.4的时候,发现有个问题: system.io.file' does not contain a definition for readalltext on we ...
分类:
移动开发 时间:
2016-05-11 19:25:41
阅读次数:
607
1、设置窗体TopMost属性 private DispatcherTimer timer; public Window1() { InitializeComponent(); Loaded += new RoutedEventHandler(Window1_Loaded); } void Wind ...
分类:
Windows程序 时间:
2016-05-10 18:48:38
阅读次数:
1109