一、自定义层的方法1方法描述:创建一个CALayer的子类,然后覆盖drawInContext:方法,使用Quartz2D API进行绘图1.创建一个CALayer的子类2.在.m文件中覆盖drawInContext:方法,在里面绘图 1 @implementation MJLayer 2 3 #....
分类:
其他好文 时间:
2014-09-05 22:25:12
阅读次数:
190
@interface ViewController (){ Shape *_shape;}@end@implementation ViewController- (void)loadView{ //设置画板 self.view=[[SimpleDrawBoard alloc]ini...
分类:
其他好文 时间:
2014-09-04 22:13:40
阅读次数:
245
An abstract function has to be overridden while a virtual function may be overridden.Virtual functions can have a default /generic implementation in t...
分类:
其他好文 时间:
2014-09-04 18:33:39
阅读次数:
153
原文:http://www.cnblogs.com/ider/archive/2011/06/30/what_is_in_cpp_header_and_implementation_file.html在C++编程过程中,随着项目的越来越大,代码也会越来越多,并且难以管理和分析。于是,在C++中就要分...
分类:
编程语言 时间:
2014-09-04 11:43:59
阅读次数:
176
@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRe...
分类:
移动开发 时间:
2014-09-04 09:34:27
阅读次数:
194
6 RPC
Remote procedure call implementation
Python | Java | Ruby | PHP| C#
转载请注明出处:jiq?钦's technical Blog
Remote procedure call (RPC)
(using the .NET client)
在第二个教程second tutorial 中...
分类:
Web程序 时间:
2014-09-04 00:16:57
阅读次数:
370
Visual Basic for Application(VBA) is an implementation of Microsoft’s event-driven programming language Visual Basic 6. Its associated integrated dev....
分类:
移动开发 时间:
2014-09-03 22:39:57
阅读次数:
263
@synthesize关键字: 根据@property设置,自动生成成员变量相应的存取方法,从而可以使用点操作符来方便的存取该成员变量 。@implementation 关键字,表明类的实现 @end 结束self 关键字 :类似于java中的this,是隐藏参数,指向当前调用方法的类。super ...
分类:
移动开发 时间:
2014-09-03 12:33:06
阅读次数:
302
A database connect, there updated both queries (different statement, and regardless of order), after completing the implementation, not close, will ha...
分类:
数据库 时间:
2014-09-03 09:30:46
阅读次数:
328
获取鼠标按键// 获取鼠标按键, getButton:function(event) { //DOM,先检测是否支持DOM鼠标事件 if(document,implementation.hasFeature("MouseEvents","2.0")) { return event.butto...
分类:
Web程序 时间:
2014-09-02 11:49:24
阅读次数:
201