全部文章
本文转载至http://sjh787291806.blog.163.com/blog/static/21396319620131015105856616/如果需要将UIView的4个角全部都为圆角,做法相当简单,只需设置其Layer的cornerRadius属性即可(项目需要使用QuartzCore...
分类:移动平台 时间:2014-06-04 19:02:02 收藏:0 阅读:338
json数据类型格式:[{id:"1",code:"1",description:"博士"},{id:"2",code:"2",description:"硕士"},{id:"3",code:"3",description:"学士"}]//参考代码 public string DataTable...
分类:Web开发 时间:2014-06-04 19:01:29 收藏:0 阅读:599
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For example,S="ADOBECODEBA...
分类:Windows开发 时间:2014-06-04 19:03:18 收藏:0 阅读:511
1、动态加载脚本(src 原理,异步,支持跨域)var loadScript = function (url, callback) { var script = document.createElement("script"); script.src = url; document...
分类:编程语言 时间:2014-06-04 19:07:11 收藏:0 阅读:428
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他 时间:2014-06-04 19:06:31 收藏:0 阅读:300
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他 时间:2014-06-04 19:05:58 收藏:0 阅读:294
今天原本想模仿2048 游戏的。 但是在设计背景环境时,涉及到绘图的知识!于是就开始对绘图进行了一翻学习。 若想自己绘图必须 写自己的View(继承UICView);然后重写UIView 中的drawRect:rect 方法 -(void)drawRect:(CGRent)rect{ //...
分类:其他 时间:2014-06-04 19:05:21 收藏:0 阅读:394
1.复制新表结构及数据到新表create table 新表 select * from 旧表2.只复制表结构到新表create table 新表 select * from 旧表 where 1=23.复制旧表的数据到新表(假设两个表结构一样)insert into 新表 select * fr.....
分类:数据库技术 时间:2014-06-04 19:04:40 收藏:0 阅读:409
对于 .net framework 中的代码,光拿 Reflector 看是不够过瘾的,如果能够调试进去就好了!其实,微软是提供了一套 sourcecode 的下载的:http://referencesource.microsoft.com/netframework.aspx下载后运行安装文件把 s...
分类:Web开发 时间:2014-06-04 19:03:57 收藏:0 阅读:409
源地址:http://yanshuaijun.2010.blog.163.com/blog/static/362411622011102443056225/主题:mysql error nr.1045 解决方法2011-11-24 16:30:56|分类:mysql|举报|字号订阅1.进入cmd手动...
分类:数据库技术 时间:2014-06-04 19:07:55 收藏:0 阅读:384
1310719310720310721323994
上一页3239936下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!