[btn.layer setMasksToBounds:YES];[btn.layer setCornerRadius:4.0]; //设置矩形四个圆角半径
分类:
其他好文 时间:
2014-11-24 11:31:17
阅读次数:
123
页面滚动时出现固定导航的效果,参考页面有http://v.thea.cn/course/info_358和v.thea.cn.参考代码如下:课程介绍课程大纲课程评论 免费试听 购买课程 js如下:$(window).scroll(function(){ var ...
分类:
其他好文 时间:
2014-11-24 11:31:23
阅读次数:
142
index.htm:全文搜索引擎Powered By Karma上传文件index.asp:搜索上传系统登陆 搜索上传系统登陆 ...
分类:
Web程序 时间:
2014-11-24 11:32:52
阅读次数:
205
这一篇开始正式完成求值器,首先本着一个基本原则: 先将整个流程实现,才逐步细化每个过程,最终扩充比较难的特性。 一、 词法分析 def tokenAnalysis(strings): return strings.replace('(',' ( ').replace(')',' ) ').split...
分类:
编程语言 时间:
2014-11-24 11:30:34
阅读次数:
296
1 ,可读性: readonly 、 readwrite@property(readwrite,....) valueType value;这个属性是变量的默认属性,就是如果你 (readwrite and readonly 都没有使用,那么你的变量就是 readwrite 属性 ) ,通过加入 r...
分类:
移动开发 时间:
2014-11-24 11:32:20
阅读次数:
170
1. [代码]GET 方法import httplib#-----------------------------conn = httplib.HTTPConnection("www.python.org")conn.request("GET", "/index.html")r1 = conn.ge...
分类:
编程语言 时间:
2014-11-24 11:32:59
阅读次数:
251
-(BOOL)isValidateEmail:(NSString *)email { NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; NSPredicate *emailTest = [NSP.....
分类:
移动开发 时间:
2014-11-24 11:31:59
阅读次数:
170
难以想象,如果没有John Resig的Jquery,前端的规范和写法会多么乱,乱到自己都看不懂;如果没有谷歌的Angular和NodeJs,你不会知道js也能运行如飞,尽管看上去像一个小家碧玉,其实她不只适合做健美教练,而且还能化身长跑运动员,绝对让你心服口服,看着吧,她的能耐不只这些!
分类:
Web程序 时间:
2014-11-24 11:29:58
阅读次数:
236
在上传图片前预览图片的功能,可提高你网站的用户体验,让用户清楚所要上传的图片是不是选对了。本代码无JS插件,纯JavaScript结合HTML来实现,是一个很不错的例子,比较完整:本地图片预览 转自:http://www.codefans.net/articles/1395.s...
分类:
其他好文 时间:
2014-11-24 11:31:48
阅读次数:
307
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:
其他好文 时间:
2014-11-24 11:30:48
阅读次数:
161
$val) { define($name , $val); } /** * 用PDO链接数据库 */ $dbo = new PDO("mysql:host=" . DB_HOST . ";dbname=" . DB_NAME . "","" . DB_USER . "","" . DB...
分类:
数据库 时间:
2014-11-24 11:30:16
阅读次数:
185
想写博客很长时间了,因为一直身患懒癌,所以一直拖到了现在。markdown的语法也是刚刚学,试验一下效果好了不说了,直接上干货了。-------------------------------------------------------------------------------------...
分类:
数据库 时间:
2014-11-24 11:29:55
阅读次数:
272
1、在最新的Xcode6.0之后新建项目默认的是使用Main.storyboard,有些人习惯用storyboard有些人不习惯使用,当我们新建项目删除storyboard时我们运行项目发现会报错:Could not find a storyboard named 'Main' in bundle ...
分类:
移动开发 时间:
2014-11-24 11:31:34
阅读次数:
198
分类:
移动开发 时间:
2014-11-24 11:31:12
阅读次数:
137
static SurveyRunTimeData *sharedObj = nil; //第一步:静态实例,并初始化置为nil。@implementation SurveyRunTimeData+ (SurveyRunTimeData*) sharedInstance//第二步:实例构造检查静态实例...
分类:
移动开发 时间:
2014-11-24 11:30:23
阅读次数:
118
Count and SayThe count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is read off as "one 1" or 11.11...
分类:
其他好文 时间:
2014-11-24 11:28:33
阅读次数:
218
1.ls 目录列举(dir)一般我们这么写:Linux代码 收藏代码 ls 列举当前目录的所有文件,如果文件很多的话,这么看很复杂。我们可以加关键字,例如我们要看包含xml的全部文件。Linux代码 收藏代码 ls *xml* 如果这个时候,我们想要看到这些文件的所有者信息可以这么写:Linux代码...
分类:
系统相关 时间:
2014-11-24 11:28:44
阅读次数:
246