//MyInt.pasunit MyInt;interface{$IFNDEF MYLIB}function MyAdd(a,b:integer):integer ;stdcall;{$ENDIF}implementation{$IFNDEF MYLIB}function MyAdd; extern...
@protocol XieYi //1, 定义- (void)star;@end@interface Shixian : NSObject @end@implementation Shixian//4, 实现- (void)star{ NSLog(@" 这是 协议方法的 实现");}@end@...
分类:
其他好文 时间:
2015-01-25 19:39:39
阅读次数:
335
获取轮廓#import #import #import @implementation OpenCVHelper+(UIImage *)getImageOutLine:(UIImage *)iputimg{ cv::Mat cvImage; UIImageToMat(iputimg, c...
分类:
其他好文 时间:
2015-01-23 13:16:22
阅读次数:
173
IOS 自定义model如果要转换位json与服务器进行交互的时候,我把model数据类型先转换为了dictionary然后在进行json序列化。#import @implementation ConvertToCustomClass+ (NSMutableArray *)convertCustom...
分类:
移动开发 时间:
2015-01-23 13:04:45
阅读次数:
218
图片水印功能 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
// 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
@interface AppDelegate()
@property UILabel* show;
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...
分类:
移动开发 时间:
2015-01-21 22:35:50
阅读次数:
217
#import "CommodityCell.h"#import "UIImageView+WebCache.h"@implementation CommodityCell- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:...
分类:
其他好文 时间:
2015-01-21 22:07:00
阅读次数:
189
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
面向对象的三大特性是什么?(封装、继承、多态)封装:在OC语言中,使用@interface和@implementation来处理类。@interface就好像暴露在外面的时钟表面,给外界提供展示以及接口。@implementation就好像隐藏在时钟内部的构造实现,把具体的实现封装了起来。封装主要体...
分类:
其他好文 时间:
2015-01-19 14:03:56
阅读次数:
122