码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
二叉搜索树实现MAP
二叉搜索树的基本实现。 1 /* 2 Date: 2014-04-29 3 purpose: An implementation of MAP using binary search tree. 4 */ 5 6 #ifndef CUSTOMIZED_MAP_H 7 #define CUST...
分类:其他好文   时间:2014-06-12 15:59:38    阅读次数:404
IOS遍历未知对象属性、函数
转:http://blog.csdn.net/chaoyuan899/article/details/24399761#import @implementation NSObject (PropertyListing) /* 获取对象的所有属性 */- (NSDictionary *)pr...
分类:移动开发   时间:2014-06-11 21:48:49    阅读次数:340
xmpp muc 群聊协议 3
6.Entity Use CasesA MUC implementation MUST supportService Discovery[7].服务端必须实现 service discover6.1Discovering Component Support for MUC发现服务器是否支持mucA ...
分类:其他好文   时间:2014-06-11 10:10:31    阅读次数:345
计算机视觉code与软件
Research CodeA rational methodology for lossy compression- REWIC is a software-based implementation of a a rational system for progressive transmissio...
分类:其他好文   时间:2014-06-11 10:07:50    阅读次数:1060
私人通讯录
这里给出大部分主要的代码 联系人模型对象: #import "NJContatc.h" @implementation NJContatc - (void)encodeWithCoder:(NSCoder *)aCoder { [aCoder encodeObject:self.name forKey:@"name"]; [aCoder encodeObject:s...
分类:其他好文   时间:2014-06-10 16:00:44    阅读次数:245
IOS Swizzle(hook)
///////////////////////////////////////////////////////////////////////////////////////////////////#import "NSArray+swizzle.h"@implementation NSArray ...
分类:移动开发   时间:2014-06-08 22:41:02    阅读次数:372
面向对象语法
//类的声明#import @interface Car : NSObject //NSObject让Car类具备有创建对象的能力{ @public int wheels; int speed;}- (void)run;@end//类的实现@implementation Car- (void) ru...
分类:其他好文   时间:2014-06-07 04:43:04    阅读次数:301
ios 继承UIView实现自定义视图——实现画图
主要的原理包括: 继承UIView ,重载drawrect和重载触摸事件 待实现的功能还有,路径数组保存等。 #import "testdrow.h" @implementation testdrow UIColor *pick_color; int choose; UIBezierPath *mpath ; UIBezierPath *eraser_path; NSTimer *myt...
分类:移动开发   时间:2014-06-03 00:20:36    阅读次数:323
将外部准备好的sqlite导入到项目当中
首先,将sqlite数据库文件放在Resource文件夹下,并且允许其编译到项目当中。之后在AppDelegate当中执行一些代码,这里将代码封装了一个Helper: 1 #import "RPDBInitializeHelper.h" 2 3 @implementation RPDBInitia....
分类:数据库   时间:2014-06-02 18:28:36    阅读次数:282
做NSArray分类,能正常显示中文
NSArray+Log.m 1 #import "NSArray+Log.h" 2 3 @implementation NSArray (Log) 4 5 - (NSString *)descriptionWithLocale:(id)locale 6 { 7 // 遍历数组中的所有内容...
分类:其他好文   时间:2014-05-25 03:42:18    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!