.h文件声明 + (MyHandle *)shareMyHandle; .m文件实现 #import "MyHandle.h" // 声明一个静态变量static MyHandle *myHandel = nil;@implementation MyHandle // 实现方法 + (MyHande ...
分类:
其他好文 时间:
2016-05-17 22:41:49
阅读次数:
160
#import "CoreAnimationViewController.h"@interface CoreAnimationViewController ()@property(nonatomic, strong)UIView *myView;@end@implementation CoreAni ...
分类:
其他好文 时间:
2016-05-13 11:35:23
阅读次数:
112
在jmeter发送http请求时,Implementation下拉框中有几个选项,如下: 那到底有什么区别呢?发送http请求改用哪种方法呢。百度后查之,没答案。我们还是看官方文档吧。官方文档解释如下: HTTP Request - this has an implementation drop-d ...
分类:
其他好文 时间:
2016-05-13 07:47:42
阅读次数:
1016
点击屏幕最上方状态栏(status)时,如果当前是tableview或者是可以滚动的控件,就可以滚动到最上方的位置;#import "LZPStatuesClickWindow.h"
//定义一个全局变量
//整个程序的生命周期都存在;
UIWindow * _statueWindow;
@interface LZPStatuesClickWindow ()
@end@implementation...
分类:
其他好文 时间:
2016-05-12 18:23:34
阅读次数:
157
cache一致性
On machines or bus configurations inwhich the hardware does not ensure cache coherence for DMA operations—such ascertain Intel Itanium systems—the standard Windows DMA implementation does th...
分类:
其他好文 时间:
2016-05-12 16:53:49
阅读次数:
758
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
/**
* 使用block的另一个用处是可以让程序在后台较长久的运行。
以前,当app被home键退出后,app仅有最多5秒钟的时候做一些保存或清理
资源工作。但是应用可以调用UIApplication的...
分类:
其他好文 时间:
2016-05-12 12:43:10
阅读次数:
149
一些公用类:
@interface CustomClass : NSObject
- (void) fun1;
@end
@implementation CustomClass
- (void) fun1
{
NSLog(@"fun1");
}
@end
@interface TestClass :...
分类:
移动开发 时间:
2016-05-12 11:58:25
阅读次数:
255
一些公用类:
@interface CustomClass : NSObject
- (void) fun1;
@end
@implementation CustomClass
- (void) fun1
{
NSLog(@"fun1");
}
@end
@interface TestClass :...
分类:
移动开发 时间:
2016-05-12 11:52:45
阅读次数:
262
1 公有继承 当派生类公有继承自 (public inheritance) 基类时,继承通常包含两个部分:一是函数的"接口" (interface),二是函数的"实现" (implementation) 如下,基类 Shape 中有三个不同形式的成员函数,分别代表公有继承的三种情况 1.1 纯虚函数 ...
分类:
编程语言 时间:
2016-05-11 21:55:31
阅读次数:
387
一.集成微信授权登录 二.集成代码 1. AppDelegate 代码 #import "AppDelegate.h"#import "WXApi.h"#import "WXApiManager.h"@interface AppDelegate ()@end@implementation AppDe ...
分类:
微信 时间:
2016-05-11 13:06:25
阅读次数:
671