码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
CALayer4-自定义层
一、自定义层的方法1方法描述:创建一个CALayer的子类,然后覆盖drawInContext:方法,使用Quartz2D API进行绘图1.创建一个CALayer的子类2.在.m文件中覆盖drawInContext:方法,在里面绘图 1 @implementation MJLayer 2 3 #....
分类:其他好文   时间:2014-09-05 22:25:12    阅读次数:190
简单?工?厂模式 (Simple Factory Pattern)
@interface ViewController (){ Shape *_shape;}@end@implementation ViewController- (void)loadView{ //设置画板 self.view=[[SimpleDrawBoard alloc]ini...
分类:其他好文   时间:2014-09-04 22:13:40    阅读次数:245
C# abstract function VS virtual function?
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
C++的头文件和实现文件分别写什么
原文: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
iOS代码Button Demo
@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRe...
分类:移动开发   时间:2014-09-04 09:34:27    阅读次数:194
RabbitMQ学习(六).NET Client之RPC
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 Applications
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
iOS中的 self,super,copy等关键字问题
@synthesize关键字: 根据@property设置,自动生成成员变量相应的存取方法,从而可以使用点操作符来方便的存取该成员变量 。@implementation 关键字,表明类的实现 @end 结束self 关键字 :类似于java中的this,是隐藏参数,指向当前调用方法的类。super ...
分类:移动开发   时间:2014-09-03 12:33:06    阅读次数:302
Sqlite: unable to open database file
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
搭建自己的base.js(2)-其他事件方法
获取鼠标按键// 获取鼠标按键, getButton:function(event) { //DOM,先检测是否支持DOM鼠标事件 if(document,implementation.hasFeature("MouseEvents","2.0")) { return event.butto...
分类:Web程序   时间:2014-09-02 11:49:24    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!