E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
代码笔记
【
代码笔记
】缓存路径操作类
一,代码。AppDelegate.h#import @interfaceAppDelegate:UIResponder { NSMutableDictionary*cachedData; } @property(strong,nonatomic)UIWindow*window; @end AppDelegate.m#import"AppDelegate.h" #impor
Livia.Chen
·
2016-03-21 09:00
【
代码笔记
】缓存路径操作类
一,代码。AppDelegate.h#import @interfaceAppDelegate:UIResponder{NSMutableDictionary*cachedData;}@property(strong,nonatomic)UIWindow*window;@end AppDelegate.m#import"AppDelegate.h" #import"RootViewControl
fanqingtulv
·
2016-03-21 09:00
PHP 观察者设计模式测试
代码笔记
'; } } /** * 观察者2 * Class SaveName */ class SaveName implements Observer { public function update() { echo 'the name has been save '; } } /** * 被观察者接口 * Interface Observe
开发者007号
·
2016-03-18 16:00
【
代码笔记
】后台运行,可以选择在前台或后台或前后台
一,工程图。二,代码。AppDelegate.hAppDelegate.mRootViewController.h#import @interfaceAppDelegate:UIResponder @property(strong,nonatomic)UIWindow*window; @property(nonatomic,unsafe_unretained)UIBackgrou
Livia.Chen
·
2016-03-18 09:00
【
代码笔记
】后台运行,可以选择在前台或后台或前后台
一,工程图。二,代码。AppDelegate.hAppDelegate.mRootViewController.h#import @interfaceAppDelegate:UIResponder@property(strong,nonatomic)UIWindow*window;@property(nonatomic,unsafe_unretained)UIBackgroundTaskIden
fanqingtulv
·
2016-03-18 09:00
JFinal教程JfinalUIB
代码笔记
(8)--- 权限设计和分配
1.JFinalUIB的权限设计值遵循最常见的RBAC模型进行设计和实现的,不熟悉权限设计的童鞋们最好先看看什么是RBAC,网上搜搜很多RBAC设计的表结构,下面是本项目中的设计结构 2.在JFinalUIB中权限分配有两种流程一是:用户-->分组-->角色-->功能首先添加一个用户,并绑定和分组的关系,分组一般是比较固定的,角色一般也是固定的,功能是每开发一个action就录入一个,录入完功能一
littleant
·
2016-03-17 14:00
JFinal教程JfinalUIB
代码笔记
(7)--- URL拦截规则和修改
1.配置jfinal的拦截规则,jfinaldemo中是/*,JFinalUIB中是/jf/*,原因有两点,一是为了处理前端nginx或者Apachehttpserver请求转发时更容易,所有以/jf/开头的都转发给后端servlet容器即可二是避免在不是用前端httpserver的情况下,/*拦截了所有的请求,主要是一些静态资源,如图片、css、js等等,/jf/路径下没有这种静态资源,可以屏蔽
littleant
·
2016-03-17 14:00
【
代码笔记
】和当前时间比较
代码:#import"RootViewController.h" @interfaceRootViewController() @end @implementationRootViewController -(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil { self
Livia.Chen
·
2016-03-17 09:00
【
代码笔记
】和当前时间比较
代码:#import"RootViewController.h" @interfaceRootViewController()@end @implementationRootViewController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil{self=[superinitWithN
fanqingtulv
·
2016-03-17 09:00
Redis for .NET 系列之实现分页需求
代码笔记
:vartableName="Table1"; redisClient.AddItemToSortedSet(tableName,"1",1); redisClient.AddItemToSortedSet
jamesbing
·
2016-03-16 16:00
JFinal教程JfinalUIB
代码笔记
(6)--- 日志入库
提示:JFinalUIB的全局通用功能封装几乎都在GlobalHandler、AuthInterceptor、ParamPkgInterceptor,当然其他的几个Base开头的类也算,不过这些Base开头的类更像工具类1.日志model是Syslog,对应的表名是pt_syslog,日志的处理就是Syslog对象从创建到入库的过程2.在接收到url请求时,首先经过GlobalHandler全局处
littleant
·
2016-03-16 09:00
【
代码笔记
】提醒时间的选择
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController{UITableView*remindTable;intlastIndex;intnowIndex;NSArray*textArray;}@end RootViewController.m#import"RootVie
fanqingtulv
·
2016-03-16 09:00
【
代码笔记
】提醒时间的选择
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController { UITableView*remindTable; intlastIndex; intnowIndex; NSArray*textArray; } @end RootViewContr
Livia.Chen
·
2016-03-16 09:00
【
代码笔记
】将400电话中间加上-线
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview. NSLog(@"--iphone--%@",[selfgetNewPhoneStr1:@"18502368888"]);}#pragma-mark-functions //只需传一个电话进去,可以返回一个处理好的加了-线的400
fanqingtulv
·
2016-03-16 09:00
【
代码笔记
】关于UIFont的一些define
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" #import"Utils.h" @interfaceRootViewControlle
Livia.Chen
·
2016-03-15 10:00
【
代码笔记
】关于UIFont的一些define
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" #import"Utils.h" @interfaceRootViewControlle
Livia.Chen
·
2016-03-15 10:00
【
代码笔记
】关于UIFont的一些define
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController@end RootViewController.m#import"RootViewController.h" #import"Utils.h" @interfaceRootViewController()@end
fanqingtulv
·
2016-03-15 09:00
【
代码笔记
】根据size截取屏幕中间矩形区域
代码:RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementationRootViewController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil{
fanqingtulv
·
2016-03-14 09:00
【
代码笔记
】根据size截取屏幕中间矩形区域
代码:RootViewController.m#import"RootViewController.h" @interfaceRootViewController() @end @implementationRootViewController -(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nib
Livia.Chen
·
2016-03-14 09:00
【
代码笔记
】给UIImageView加上圆角效果
一,效果图。二,代码。RootViewController.m#import"RootViewController.h" @interfaceRootViewController() @end @implementationRootViewController -(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBun
Livia.Chen
·
2016-03-11 09:00
【
代码笔记
】给UIImageView加上圆角效果
一,效果图。二,代码。RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementationRootViewController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBund
fanqingtulv
·
2016-03-11 09:00
【
代码笔记
】iOS-给背景图加上移动的手势
一,工程图。二,效果图。三,代码。RootViewController.h#import@interfaceRootViewController:
[email protected]
#import"RootViewController.h"@interfaceRootViewController()@end@implementationRootViewC
菜鸟and小白
·
2016-03-10 09:36
iOS-代码笔记
【
代码笔记
】给背景图加上移动的手势
一,工程图。二,效果图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementation
fanqingtulv
·
2016-03-10 09:00
【
代码笔记
】给背景图加上移动的手势
一,工程图。二,效果图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" @interfaceRootViewController() @end @
Livia.Chen
·
2016-03-10 09:00
【
代码笔记
】给背景图赋值颜色
代码:-(void)viewDidLoad { [superviewDidLoad]; //Doanyadditionalsetupafterloadingtheview. //写法比较新奇 UIColor*bgColor=[UIColorredColor]; self.view.backgroundColor=bgColor; }
Livia.Chen
·
2016-03-09 09:00
【
代码笔记
】给背景图赋值颜色
代码:-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.//写法比较新奇 UIColor*bgColor=[UIColorredColor];self.view.backgroundColor=bgColor;}
fanqingtulv
·
2016-03-09 09:00
【
代码笔记
】点击城市中的tableView跳转到旅游景点的tableView,下面会有“显示”更多。
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController { UITableView*_tableView; NSMutableArray*provinceArray; } @end RootViewController.m#import"RootVi
Livia.Chen
·
2016-03-08 09:00
【
代码笔记
】点击城市中的tableView跳转到旅游景点的tableView,下面会有“显示”更多。
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController{UITableView*_tableView;NSMutableArray*provinceArray;}@end RootViewController.m#import"RootViewController.h"
fanqingtulv
·
2016-03-08 09:00
【
代码笔记
】钢琴小游戏
一,效果图。二,工程图。三,代码。RootViewController.h#import //加入头文件 #import @interfaceRootViewController:UIViewController { NSString*soundFile; } @end RootViewController.m#import"RootViewController.h"
Livia.Chen
·
2016-03-07 09:00
【
代码笔记
】钢琴小游戏
一,效果图。二,工程图。三,代码。RootViewController.h#import //加入头文件 #import @interfaceRootViewController:UIViewController { NSString*soundFile; } @end RootViewController.m#import"RootViewController.h"
Livia.Chen
·
2016-03-07 09:00
【
代码笔记
】钢琴小游戏
一,效果图。二,工程图。三,代码。RootViewController.h#import //加入头文件 #import @interfaceRootViewController:UIViewController{NSString*soundFile;}@end RootViewController.m#import"RootViewController.h" @interfaceRootV
fanqingtulv
·
2016-03-07 09:00
【
代码笔记
】Java基础:Java的方法和类
Java作为一种面向对象的语言,具备三大特性(面向对象的核心):封装性 继承性 多态性封装性:就是打包,所有东西都是打包好的。继承:子类可以继承父类文件名:Student.java1publicclassStudent{ 2publicStringname; 3publicintage; 4 5publicvoidstudy(){ 6System.out.println("学生学习"
时孚
·
2016-03-06 09:00
【
代码笔记
】Java基础:类的继承(构造器)
在Java中,创建对象的格式为:类名 对象名 =new 类名();如:1JFramejf=newJFrame(); 一个对象被创建出来时,经常要先做一些事这个对象才能正常使用,也可以说是准备工作,比如给这个对象赋些初始值,或者先运行一些别的方法。这时候就需要一个“构造器”用于:构造对象初始化属性这样,把那些在创建时要做的事写在构造方法里,每次创建就会被执行一遍。我们常见的一种Java格式:publ
时孚
·
2016-03-05 00:00
【
代码笔记
】改变文字输入框背景
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m-(void)viewDidLoad { [superviewDidLoad]; //Doanyadditionalsetupafterloadi
Livia.Chen
·
2016-03-04 09:00
【
代码笔记
】改变文字输入框背景
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.//
fanqingtulv
·
2016-03-04 09:00
spring
代码笔记
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml"); //BeanFactory 的子类 XmlBeanFactory factory = new XmlBeanFactory(new ClassPathResource("Beans.xml")); //ApplicationCo
900
·
2016-03-03 10:00
【
代码笔记
】浮动的云
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" //加入头文件 #import"BGMovingComponent.h" @int
Livia.Chen
·
2016-03-03 09:00
【
代码笔记
】浮动的云
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController@end RootViewController.m#import"RootViewController.h" //加入头文件 #import"BGMovingComponent.h" @interfaceRootV
fanqingtulv
·
2016-03-03 09:00
【
代码笔记
】自定义布局实现瀑布流
文件目录如下 动画效果图如下:1//ViewController文件 2 3#import"ViewController.h" 4#import"LYWaterFlowLayout.h" 5#import"LYWaterCell.h" 6#import"LYShopModel.h" 7 8@interfaceViewController() 9@property(nonatomi
一米王子
·
2016-03-03 00:00
【
代码笔记
】自定义布局实现瀑布流
文件目录如下 动画效果图如下:1//ViewController文件 2 3#import"ViewController.h" 4#import"LYWaterFlowLayout.h" 5#import"LYWaterCell.h" 6#import"LYShopModel.h" 7 8@interfaceViewController() 9@property(nonatomi
一米王子
·
2016-03-03 00:00
【
代码笔记
】手势解锁
动画实现解锁-文件目录效果图 ViewController.h文件//创建自定义的View,遵守协议,设置代理,实现代理方法1#import"LYPaintView.h" 2 3#import"ViewController.h" 4 5@interfaceViewController() 6 7@end 8 9@implementationViewController 10 1
一米王子
·
2016-03-02 22:00
【
代码笔记
】手势解锁
动画实现解锁-文件目录效果图 ViewController.h文件//创建自定义的View,遵守协议,设置代理,实现代理方法1#import"LYPaintView.h" 2 3#import"ViewController.h" 4 5@interfaceViewController() 6 7@end 8 9@implementationViewController 10 1
一米王子
·
2016-03-02 22:00
【
代码笔记
】浮点数处理并去掉多余的0
一,代码。-(void)viewDidLoad { [superviewDidLoad]; //Doanyadditionalsetupafterloadingtheview. NSLog(@"--float-%@-",[selfstringDisposeWithFloat:9.000899990000]); } #pragma-mark-functions //浮点数处理并
Livia.Chen
·
2016-03-02 09:00
【
代码笔记
】浮点数处理并去掉多余的0
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview. NSLog(@"--float-%@-",[selfstringDisposeWithFloat:9.000899990000]);}#pragma-mark-functions //浮点数处理并去掉多余的0 -(NSStrin
fanqingtulv
·
2016-03-02 09:00
【
代码笔记
】仿QQ空间,歌曲播放
一,效果图。二,工程图。三,代码。RootViewController.h#import #import @interfaceRootViewController:UIViewController { //存放歌曲数组 NSMutableArray*musicArray; //名字所在的label UILabel*musicNameLabel; //播放器 AVAudioPl
Livia.Chen
·
2016-03-01 09:00
【
代码笔记
】仿QQ空间,歌曲播放
一,效果图。二,工程图。三,代码。RootViewController.h#import #import @interfaceRootViewController:UIViewController{//存放歌曲数组 NSMutableArray*musicArray;//名字所在的label UILabel*musicNameLabel;//播放器 AVAudioPlayer*_player;//
fanqingtulv
·
2016-03-01 09:00
【
代码笔记
】点击搜索按钮,或放大镜后都会弹出搜索框
一,效果图。二,工程图。三,代码。RootViewController.h#import #import"CLHSearchBar.h" @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" @interfaceRootViewCo
Livia.Chen
·
2016-02-29 09:00
【
代码笔记
】点击搜索按钮,或放大镜后都会弹出搜索框
一,效果图。二,工程图。三,代码。RootViewController.h#import #import"CLHSearchBar.h" @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" @interfaceRootViewController
fanqingtulv
·
2016-02-29 09:00
【
代码笔记
】时间选择框
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController { UIDatePicker*datePicker; UILabel*timeLabel; } @end RootViewController.m#import"RootViewController
Livia.Chen
·
2016-02-26 09:00
【
代码笔记
】时间选择框
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController{UIDatePicker*datePicker;UILabel*timeLabel;}@end RootViewController.m#import"RootViewController.h" @interfac
fanqingtulv
·
2016-02-26 09:00
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他