码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
计算器的实现代码
#import "AppDelegate.h" @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {     sel...
分类:其他好文   时间:2014-08-24 14:13:32    阅读次数:234
Some WIX extension tags write rows to CreateFolder table which lead to Not-Uninstallable Patch
I found an issue in WIX extension implementation. Some WIX extension tags write rows to CreateFolder table, e.g. , , . As the official MSI document says, a patch can be Not uninstallable if it co...
分类:其他好文   时间:2014-08-22 13:02:38    阅读次数:224
HashedWheelTimer 原理
HashedWheelTimer 是根据Hashed and Hierarchical Timing Wheels: Data Structures for the Efficient Implementation of a Timer Facility这篇论文做出来的.HashedWheelTim...
分类:其他好文   时间:2014-08-22 00:03:05    阅读次数:263
Quartz 各种绘制图形用法---实现画图片、写文字、画线、椭圆、矩形、棱形等
// Only override drawRect: if you perform custom drawing.// An empty implementation adversely affects performance during animation.- (void)drawRect:(C...
分类:其他好文   时间:2014-08-21 22:36:55    阅读次数:316
如何封装UILable 输入框 和UIField 显示框 同时创建对象(经典)
源代码(.m文件) #import "TLView.h" //本类的延展 @interface TLView () {     UILabel *_desLabel;    //左边的lable     UITextField *_textField;//右边的lable } @end @implementation...
分类:其他好文   时间:2014-08-21 13:27:14    阅读次数:165
两个色块做的红绿灯
#import "ViewController.h"@interface ViewController (){ UIView *view; UIView *view0; int i;}@end@implementation ViewController - (...
分类:其他好文   时间:2014-08-20 21:04:52    阅读次数:144
菱形开合的实现 IOS
实现的原理:利用了自动布局和形变核心代码块:@implementation JHMainView{ UILabel *label1,*label2,*label3,*label4; UIButton *btn;}- (id)initWithFrame:(CGRect)frame{ self =...
分类:移动开发   时间:2014-08-20 13:53:02    阅读次数:237
Implementation: Quick Sort 2014-08-19
1 #include 2 3 void print(int *a, int start , int end); 4 5 void quick_sort(int *a, int start, int end) { 6 if (start + 1 >= end) return; 7 ...
分类:其他好文   时间:2014-08-19 20:37:15    阅读次数:238
Read-Copy Update Implementation For Non-Cache-Coherent Systems
A technique for implementing read-copy update in a shared-memory computing system having two or more processors operatively coupled to a shared memory...
分类:其他好文   时间:2014-08-19 18:38:25    阅读次数:263
搜集的一些RTMP项目,有Server端也有Client端
查询一些RTMP的协议封装时找到了一些RTMP开源项目,在这里列举一下,以后有时间或是有兴趣可以参考一下:just very few of them.Red5only contains a server-implementation (in java).The python projectrtmpy...
分类:其他好文   时间:2014-08-18 23:33:03    阅读次数:324
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!