Objective--C 类与对象1 关键字@interace 类定义 @end 类结束@implementation 类实现: 继承@public 公用@private 私有@protected 内部 子类可访问@proterty 声明成员熟悉get,set @sythesize 实现成员变量.....
分类:
移动开发 时间:
2015-03-14 18:25:18
阅读次数:
141
超类即父类,通过 [super setName: @"a"] 可以调用超类方法复合是指一个对象由其他多个对象组成对象初始化@interface Car : NSObject( Engine *engine;)@end@implementation Car- (id) init{ if(self .....
分类:
其他好文 时间:
2015-03-14 06:08:03
阅读次数:
116
在新建的工程里面添加一个类
即:以下一个类
GetHDSerial.cpp// GetHDSerial.cpp: implementation of the CGetHDSerial class.
// Download by http://www.newxing.com/
/////////////////////////////////////////////////////////////...
分类:
编程语言 时间:
2015-03-13 18:53:35
阅读次数:
210
一个动画效果by 伍雪颖#define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)@interfaceViewController ()@end@implementation ViewController- (void)viewDid...
分类:
其他好文 时间:
2015-03-13 10:31:28
阅读次数:
113
#import "ViewController.h"#define IMAGE_COUNT 6@interface ViewController (){ UIImageView *myImageView; int currentIndex;}@end@implementation Vie...
分类:
其他好文 时间:
2015-03-13 00:04:24
阅读次数:
144
------- android培训、java培训、期待与您交流! ----------成员变量的作用域成员变量的作用域共分为4种:@private :只能在当前类的实现(@implementation)中直接访问,即当前类的对象方法中访问。@protected : 可以在当前类以及其子类的实现(@i...
分类:
其他好文 时间:
2015-03-12 06:17:50
阅读次数:
124
// 实现图片的旋转和移动和放大缩小#import "ViewController.h"@interface ViewController ()@property (nonatomic, weak) UIButton *_btnImage;@end@implementation ViewContro...
分类:
其他好文 时间:
2015-03-12 00:48:16
阅读次数:
191
题意:N个回合。每个回合:name score【名为name的这个人得了score分(可负可正)】。问最后谁的累积分数是最高的。设为M。如果有好几个都得了M,找出这几个人中哪个最早回合累积分数超过【大于等于】M。最早回合累积分:每一个回合结束后每个人都有一个当前的累积分数。思路:这题竟被困了挺久,,...
报错: Use of undeclared identifier '_executing'; Use of undeclared identifier '_finished';解决方法:在SDWebImageDownloaderOperation类的实现中(@implementation...
分类:
Web程序 时间:
2015-03-11 10:36:10
阅读次数:
134
1. Interface 可以用来持有任何implementation该Interface的对象,这和父类可以持有子类是一样的。2. 任何需要一个类A的方法,你都可以把A的子类作为A的替代品来使用,当然有关具体的方法覆盖引起的问题,你要自己care3. 一旦强制转换成功了,你就可以使用任意的属于转换...
分类:
编程语言 时间:
2015-03-09 16:00:48
阅读次数:
160