码迷,mamicode.com
首页 >  
搜索关键字:xcode log    ( 100148个结果
While reading xxx.png pngcrush caught libpng error: Not a PNG file..
While reading /XXX/XXX/XXX/img1.png pngcrush caught libpng error: Not a PNG filCould not find file: /Users/XXX/Library/Developer/Xcode/DerivedData/C.....
分类:其他好文   时间:2014-06-15 22:56:42    阅读次数:351
Amazon RDS MySQL数据库还原时 log_bin_trust_function_creators 错误解决办法
使用了Amazon AWS EC2免费云空间,数据库实例采用Amazon RDS。原来在Windows Server上有一个存在大量数据的MySQL数据库。现在需要在Amazon RDS上还原这个MySQL数据库,勾掉Views(因为它会要求SUPER权限,而Master User无此权限,毕竟是托...
分类:数据库   时间:2014-06-15 22:54:13    阅读次数:483
android 窗体透明的,黑暗度等的设置技巧
设置透明度(这是窗体本身的透明度,非背景)1 WindowManager.LayoutParams lp=getWindow().getAttributes();2 lp.alpha=0.3f;3 getWindow().setAttributes(lp);alpha在0.0f到1.0f之间。1.0...
分类:移动开发   时间:2014-06-15 22:26:12    阅读次数:335
自定义相机(三) -- 视频流数据 AND 预览 拍照 变焦
实现功能: 1. 视频流数据 2. 预览和拍照变焦, 所见即所得。运行环境: 1. XCODE 5.1.1 2. 真机(IPHONE5 , IOS6.1.4)#import #import //导入 - "视频流"@interface MCViewController : UI...
分类:其他好文   时间:2014-06-15 22:25:28    阅读次数:360
topcoder SRM 624 DIV2 CostOfDancing
排个序,求前k个元素和即可 int minimum(int K, vector danceCost) { sort(danceCost.begin(),danceCost.end()); return accumulate(danceCost.begin()...
分类:其他好文   时间:2014-06-15 21:53:14    阅读次数:201
ie10的input框新特性的去除
ie10的input加了两个特性:对应的,可以用css方式去除:input::-ms-clear{display:none;}input::-ms-reveal{display:none;}
分类:其他好文   时间:2014-06-15 21:36:31    阅读次数:305
xcode,在webView中引入本地html,image,js,css文件的方法
http://www.shuizhongyueming.com/2014/01/load-local-image-js-css-file-to-webview-in-xcode/
分类:Web程序   时间:2014-06-15 21:07:11    阅读次数:317
解决Android LogCat 输出乱码的问题(转)
Android日志系统提供了记录和查看系统调试信息的功能。日志都是从各种软件和一些系统的缓冲区中记录下来的。可以使用adb的logcat命令来查看系统日志缓冲区的内容,但是在实际操作时,会发现在CMD的DOS界面上面,使用logcat命令直接输出的中文内容是乱码。如下图:而这个问题只出现在使用log...
分类:移动开发   时间:2014-06-15 17:22:02    阅读次数:1256
Oracle数值函数
/*abs(n)返回参数n所指定数值的绝对值(如果参数值为NULL,则返回结果为NULL,下同)。*/--SELECT ABS(-3.14) FROM DUAL; --3.14/*round(n[, m])返回对参数n进行四舍五入处理后的结果。参数n可以是任意数字、m则必须为整数。如果省略参数m,....
分类:数据库   时间:2014-06-15 16:48:23    阅读次数:300
JavaScript之continue、break和return
continuecontinue 只能用于while循环、do/while循环、for循环以及for/in循环中,其他地方都会引起错误。1 for(var i=0;i<5;i++){2 if(i == 3) continue;3 console.log(i); //0,1,2,...
分类:编程语言   时间:2014-06-15 06:43:13    阅读次数:239
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!