摘要:
实现一张图片的旋转部分角度显示:UIImageView *image = [[UIImageView alloc]init]; image.frame = CGRectMake(50, 50, 200, 200); image.image = [UIImage imageNamed:@"460.jpg"]; [self.view addSubview:image]; CGAffineTransform transform= CGAffineTransformMakeRotation(M_PI*0.38); /*关于M_PI #define M_PI ... 阅读全文
摘要:
测试环境:xcode4.5.2 Mac OS X 10.8.2重要:由于苹果不支持自己创建动态库,所以这里需要替换两个文件1:iOS Device 需要替换的文件替换路径:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Specifications/2:iOS 模拟器 需要替换的文件替换路径:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Dev. 阅读全文
摘要:
最近在搞浏览器兼容性问题(仅限于IE浏览器),慢慢整理吧..........................................................1. 在使用分页js工具外部文件中用到了documen.getElementById().value(),在IE9中不好用了。但是在IE8中好用,不经意发现document.all.item().value在IE8、IE9及 IE10可以好用。2.在查询按钮上手型图表的显示,IE8之前用style="cursor:hand"。在IE9和IE10中使用style="cursor:pointer&q 阅读全文
摘要:
mysqlslap 是从mysql 5.1.4版开始带的一个mysql测试工具。 [root@aeolus1 ~]# mysqlslap --help mysqlslap Ver 1.0 Distrib 5.5.31, for Linux (x86_64) Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names... 阅读全文