码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
异常——org.apache.lucene.util.SetOnce$AlreadySetException
异常介绍SetOnceA convenient class which offers asemi-immutable objectwrapper implementation which allows one to set the value of an object exactly once, a...
分类:其他好文   时间:2014-08-31 14:27:51    阅读次数:172
函数与对象
实例:写一个车的类//类的声明部分@interface Car : NSObject{ int _speed; //速度 int _wheel; //轮子}-(void)run;@end//类的实现部分@implementation Car-(void)run{ NSLog(@"车的速度是:%...
分类:其他好文   时间:2014-08-30 15:00:59    阅读次数:143
CoreLocation基本使用
#import "CJViewController.h"#import @interface CJViewController ()@property (nonatomic, strong)CLLocationManager *manager;@end@implementation CJViewCo...
分类:其他好文   时间:2014-08-29 21:13:58    阅读次数:188
OpenStack Mixture HypervisorsDriver configure and implementation theory
通过本文,您将可以了解在 OpenStack 中如何进行混合 Hypervisor 的配置及其实现原理的基本分析。本文主要结合作者在 Nova 中的实际开发经验对 OpenStack 中混合 Hypervisor 场景的原理进行分析,同时介绍在实际的应用场景中如何进行配置。通常,基于 OpenSta...
分类:其他好文   时间:2014-08-28 22:24:16    阅读次数:388
8-25---8-27小小笔记
1、类别与扩展: 类别能增加功能,不能定义变量。。类别就是在“ @interface 类名()”,“@implementation 类名()”括号里加东西的;扩展不能增加功能,能定义变量。。类名后面加括号就代表扩展,标示可以在下面定义实例变量。2、实例变量就是成员变量,全局变量是定义在类外面的变.....
分类:其他好文   时间:2014-08-27 23:13:28    阅读次数:274
java使用Apache POI操作excel文件
官方介绍HSSF is the POI Project's pure Java implementation of the Excel '97(-2007) file format. XSSF is the POI Project's pure Java implementation of the ...
分类:编程语言   时间:2014-08-27 16:01:58    阅读次数:240
通过两个触摸点实现视图的缩放(iOS)
在AppDelegate.m文件中,创建视图控制器 #import "MAYAppDelegate.h" #import "MAYViewController.h" @implementation MAYAppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(...
分类:移动开发   时间:2014-08-27 09:28:17    阅读次数:238
ios7 tableViewCell 图片显示不居中
@interface MyProfileViewCell : UITableViewCell@end@implementation MyProfileViewCell- (void)layoutSubviews{ [super layoutSubviews]; CGRect frame ...
分类:移动开发   时间:2014-08-26 13:09:26    阅读次数:172
instancesRespondToSelector与respondsToSelector的区别
Test1.h@interface Test1 : NSObject- (void)objectFun;+ (void)classFun;@endTest1.m@implementation Test1- (void)objectFun{ NSLog(@"object function");}...
分类:其他好文   时间:2014-08-26 11:06:05    阅读次数:214
关灯游戏(iOS)
在.h中声明属性如下 @property (retain, nonatomic) UIWindow *window; @property (nonatomic, retain) UIView *aView; @property (nonatomic, retain) UIButton *button; 在.m中实现如下 @implementation MAYAppDelegate...
分类:移动开发   时间:2014-08-24 14:15:12    阅读次数:273
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!