码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
Delphi Dll示例
//MyInt.pasunit MyInt;interface{$IFNDEF MYLIB}function MyAdd(a,b:integer):integer ;stdcall;{$ENDIF}implementation{$IFNDEF MYLIB}function MyAdd; extern...
分类:Windows程序   时间:2015-01-26 13:29:52    阅读次数:237
最精简 代理代码
@protocol XieYi //1, 定义- (void)star;@end@interface Shixian : NSObject @end@implementation Shixian//4, 实现- (void)star{ NSLog(@" 这是 协议方法的 实现");}@end@...
分类:其他好文   时间:2015-01-25 19:39:39    阅读次数:335
opecv获取透明图像轮廓
获取轮廓#import #import #import @implementation OpenCVHelper+(UIImage *)getImageOutLine:(UIImage *)iputimg{ cv::Mat cvImage; UIImageToMat(iputimg, c...
分类:其他好文   时间:2015-01-23 13:16:22    阅读次数:173
IOS 自定义类型转换为Dictionary
IOS 自定义model如果要转换位json与服务器进行交互的时候,我把model数据类型先转换为了dictionary然后在进行json序列化。#import @implementation ConvertToCustomClass+ (NSMutableArray *)convertCustom...
分类:移动开发   时间:2015-01-23 13:04:45    阅读次数:218
iOS UIImage 图片水印,图片裁剪,屏幕截图,背景平铺
图片水印功能 1 #import "UIImage+ZR.h" 2 3 @implementation UIImage (ZR) 4 + (instancetype)waterImageWithBg:(NSString *)bg logo:(NSString *)logo 5 { 6 UI...
分类:移动开发   时间:2015-01-23 12:34:38    阅读次数:337
用UDP实现聊天功能
// SK003Dlg.cpp : implementation file//#include "stdafx.h"#include "SK003.h"#include "SK003Dlg.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEsta...
分类:其他好文   时间:2015-01-23 12:33:42    阅读次数:235
IOS 代码创建控件,并有处理事件
@interface AppDelegate() @property UILabel* show; @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { ...
分类:移动开发   时间:2015-01-21 22:35:50    阅读次数:217
自定义 cell 自适应高度
#import "CommodityCell.h"#import "UIImageView+WebCache.h"@implementation CommodityCell- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:...
分类:其他好文   时间:2015-01-21 22:07:00    阅读次数:189
Marching Cube
GPU-Marching-CubesAn Implementation of the Marching Cubes[1] AlgorithmMarching Cubes MatlabThe Standford Volume Data ArchiveBrainWeb: Simulated Brain ...
分类:其他好文   时间:2015-01-21 07:47:04    阅读次数:142
5 面向对象的三大特性
面向对象的三大特性是什么?(封装、继承、多态)封装:在OC语言中,使用@interface和@implementation来处理类。@interface就好像暴露在外面的时钟表面,给外界提供展示以及接口。@implementation就好像隐藏在时钟内部的构造实现,把具体的实现封装了起来。封装主要体...
分类:其他好文   时间:2015-01-19 14:03:56    阅读次数:122
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!