会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wangwei-Carry
carry my team!
博客园
首页
新随笔
联系
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
下一页
2017年1月5日
UITableViewCell 的附件类型 accessoryType 选中、详情、箭头
摘要: UITableViewCell * cell = [[UITableViewCell alloc] init]; 设置cell的附件类型: // >1 打钩 选中// cell.accessoryType = UITableViewCellAccessoryCheckmark; // >2 圆圈 +
阅读全文
posted @ 2017-01-05 08:27 wangwei_Carry
阅读(2140)
评论(0)
推荐(0)
2017年1月4日
AFNetworking 与 gbk 编码格式后台数据的使用
摘要: 仅针,后台数据为GBK编码时的AFNetWorking 使用情况: 1. Request failed: unacceptable content-type: text/html solution: manager.responseSerializer.acceptableContentTypes
阅读全文
posted @ 2017-01-04 12:33 wangwei_Carry
阅读(580)
评论(0)
推荐(0)
2017年1月3日
Xcode will continue when iPad is finished. "Could not find Developer Disk Image"
摘要: 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
阅读(1819)
评论(0)
推荐(0)
2016年12月29日
数据编码格式
摘要: 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
阅读(521)
评论(0)
推荐(0)
2016年12月27日
html 标签
摘要: CSS : overflow : hidden -- 就是给一个盒子定义了一个显示范围。内部的物体。只有在这个范围内部才会被显示。不然就被隐藏。 overflow-x overflow-y 控制水平,数值方向的滚动条。
阅读全文
posted @ 2016-12-27 15:15 wangwei_Carry
阅读(122)
评论(0)
推荐(0)
2016年12月22日
js array push 添加内容
摘要: 向数组中天机内容: var array = new Array(); array.push('newItem');
阅读全文
posted @ 2016-12-22 14:29 wangwei_Carry
阅读(823)
评论(0)
推荐(0)
2016年12月21日
js string 转 int Number()
摘要: var numString = '122'; var numberInt = Number(numString); var res = numberInt/2; 结果: res = 61
阅读全文
posted @ 2016-12-21 13:49 wangwei_Carry
阅读(880)
评论(0)
推荐(0)
sql select 综合运用
摘要: 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
阅读(206)
评论(0)
推荐(0)
sql语句,多个表之间,通过相同内容字段的联合查询
摘要: 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
阅读(4486)
评论(0)
推荐(0)
SQL语句 分页实现
摘要: 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
阅读(626)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
下一页
公告