上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: UITableViewCell * cell = [[UITableViewCell alloc] init]; 设置cell的附件类型: // >1 打钩 选中// cell.accessoryType = UITableViewCellAccessoryCheckmark; // >2 圆圈 + 阅读全文
posted @ 2017-01-05 08:27 wangwei_Carry 阅读(2130) 评论(0) 推荐(0) 编辑
摘要: 仅针,后台数据为GBK编码时的AFNetWorking 使用情况: 1. Request failed: unacceptable content-type: text/html solution: manager.responseSerializer.acceptableContentTypes 阅读全文
posted @ 2017-01-04 12:33 wangwei_Carry 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 1: Xcode will continue when iPad is finished. 等待进度条读取完成即可; 2: xcode,安装新版本的iOS 的 xcode 支持文件 的路径: /applications/Xcode.app/Contents/Developer/Platforms/i 阅读全文
posted @ 2017-01-03 17:53 wangwei_Carry 阅读(1767) 评论(0) 推荐(0) 编辑
摘要: 1 。 查询数据库的编码格式 sql SELECT COLLATIONPROPERTY('Chinese_PRC_Stroke_CI_AI_KS_WS', 'CodePage') 查看结果:936 简体中文GBK 950 繁体中文BIG5 437 美国/加拿大英语 932 日文 949 韩文 866 阅读全文
posted @ 2016-12-29 13:06 wangwei_Carry 阅读(517) 评论(0) 推荐(0) 编辑
摘要: CSS : overflow : hidden -- 就是给一个盒子定义了一个显示范围。内部的物体。只有在这个范围内部才会被显示。不然就被隐藏。 overflow-x overflow-y 控制水平,数值方向的滚动条。 阅读全文
posted @ 2016-12-27 15:15 wangwei_Carry 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 向数组中天机内容: var array = new Array(); array.push('newItem'); 阅读全文
posted @ 2016-12-22 14:29 wangwei_Carry 阅读(811) 评论(0) 推荐(0) 编辑
摘要: var numString = '122'; var numberInt = Number(numString); var res = numberInt/2; 结果: res = 61 阅读全文
posted @ 2016-12-21 13:49 wangwei_Carry 阅读(869) 评论(0) 推荐(0) 编辑
摘要: 1 : 多个表联合查询 select j.id, jt.Name, j.ApproveType , j.ProductCode, j.CustomerCode, u.FullName, jf.Name as jfName, j.ExpectedTime from JudgeOrder as j jo 阅读全文
posted @ 2016-12-21 13:36 wangwei_Carry 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1 , select j.id, jt.Name, j.ApproveType , j.ProductCode, j.CustomerCode, u.FullName, jf.Name as jfName, j.ExpectedTime from JudgeOrder as j join Judge 阅读全文
posted @ 2016-12-21 13:33 wangwei_Carry 阅读(4405) 评论(0) 推荐(0) 编辑
摘要: 1 通过sql实现分页。 select top 5 * from judgeorder where id not in (select top 10 id from judgeorder order by id) order by id 通俗点讲: 选择不在前十条记录中的前五条记录。也就是第 11 阅读全文
posted @ 2016-12-21 09:42 wangwei_Carry 阅读(618) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页