#import
"AppDelegate.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication
*)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
sel...
分类:
其他好文 时间:
2014-08-24 14:13:32
阅读次数:
234
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 是根据Hashed and Hierarchical Timing Wheels: Data Structures for the Efficient Implementation of a Timer Facility这篇论文做出来的.HashedWheelTim...
分类:
其他好文 时间:
2014-08-22 00:03:05
阅读次数:
263
// 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
源代码(.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
实现的原理:利用了自动布局和形变核心代码块:@implementation JHMainView{ UILabel *label1,*label2,*label3,*label4; UIButton *btn;}- (id)initWithFrame:(CGRect)frame{ self =...
分类:
移动开发 时间:
2014-08-20 13:53:02
阅读次数:
237
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
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的协议封装时找到了一些RTMP开源项目,在这里列举一下,以后有时间或是有兴趣可以参考一下:just very few of them.Red5only contains a server-implementation (in java).The python projectrtmpy...
分类:
其他好文 时间:
2014-08-18 23:33:03
阅读次数:
324