码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
@synthesis 使用的时候注意的地方
@implementation@synthesis age; // 就等于@synthesis age = age 得到同名的instance variable age 和-setAge, -age 这两个accessor.@end如果@implementation// no @synthesi.....
分类:其他好文   时间:2014-05-26 22:22:32    阅读次数:237
ios开发:UINavigationController反方向滑动push
新建个UINavigationController的类别: #import "UINavigationController+CustomAnimation.h" @implementation UINavigationController (CustomAnimation) - (void)customPushViewController:(UIViewContr...
分类:移动开发   时间:2014-05-26 05:33:19    阅读次数:381
ios-oc(基本语法4-内存管理)
内存管理重写dealloc方法@implementation Dog#pragma mark 当一个对象从内存中移除的时候,就会被调用- (void) dealloc{ NSLog(@"----Dog被销毁了------"); //一定要调用super的方法,写在该方法的最后 [sup...
分类:移动开发   时间:2014-05-23 12:03:27    阅读次数:347
45. Singleton类的C++/C#实现
Implementation of singleton in C++/C#.
分类:编程语言   时间:2014-05-23 04:50:35    阅读次数:237
TOM猫
#import "CHViewController.h" @interface CHViewController () @end @implementation CHViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view,...
分类:其他好文   时间:2014-05-22 12:38:44    阅读次数:369
[转载]浅谈多态机制的意义及实现
http://blog.hesey.net/2010/12/significance-and-implementation-of-polymorphism.html在面向对象编程(Object-Oriented Programming, OOP)中,多态机制无疑是其最具特色的功能,甚至可以说,不运用...
分类:其他好文   时间:2014-05-22 00:41:10    阅读次数:277
盘点iOS开发中property属性常用关键字
一、关键字说明1、@synthesize:自动生成成员变量相应的存取方法,可以使用点语法操作该变量的存取。2、@implementation: 表明类的实现 ,以@end 结束。3、self :类似java语言当中的this ,是隐藏指针 指向接受消息的对象的指针 。消息所调用的方法使用该指针参数查...
分类:移动开发   时间:2014-05-21 18:28:22    阅读次数:370
Table inheritance implementation changed
在AX 2012 R2我们会发现有些table是在AOT里的,但是不存在实际的SQL Database. 例如:CompanyInfo table. 最终通过Extends property,可以发现CompanyInfo table 继承的是DirPartyTable. 1. 为了研究清楚tabl...
分类:其他好文   时间:2014-05-20 13:35:25    阅读次数:282
ios 基本图形的绘制 基于bitmap 位图
内容包括 图片水印,图片裁剪,屏幕截图,背景平铺 1、图片水印功能 #import "UIImage+MJ.h" @implementation UIImage (MJ) + (instancetype)waterImageWithBg:(NSString *)bg logo:(NSString *)logo { UIImage *bgImage = [UIImage imageNa...
分类:移动开发   时间:2014-05-18 09:43:39    阅读次数:392
用pigz代替gzip -- 并行压缩软件
用pigz代替gzipBy yejr on 03 十二月 2012pig是个啥东东?官网:http://zlib.net/pigz一句话简介:A parallel implementation of gzip for modernmulti-processor, multi-core machine...
分类:其他好文   时间:2014-05-15 17:16:05    阅读次数:375
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!