动作回调函数 (例子) 1 bool HelloWorld::init() 2 { 3 ////////////////////////////// 4 // 1. super init first 5 if ( !Layer::init() ) 6 { 7 ...
分类:
其他好文 时间:
2015-06-05 22:27:06
阅读次数:
691
There are two typical use cases for
super:
In a class hierarchy withsingle inheritance, super can be used to refer to parent classes withoutnaming them explicitly, thus making the code more mainta...
分类:
编程语言 时间:
2015-06-05 21:17:28
阅读次数:
218
The __super keyword allows you to explicitly state that you are calling a base-class implementation for a function that you are overriding. All accessible base-class methods are considered during the...
分类:
其他好文 时间:
2015-06-05 15:43:54
阅读次数:
131
在子类的构造函数中第一行有一个默认的隐式语句。 super();子类的实例化过程:子类中所有的构造函数默认都会访问父类中的空参数的构造函数。那是因为子类继承了父类,获取到了父类中内容(属性),所以在使用父类内容之前,要先看父类是如何对自己的内容进行初始化的。所以子类在构造对象时,必须访问父类中的构造...
分类:
其他好文 时间:
2015-06-05 11:55:32
阅读次数:
95
实例方法是—类开头是+实例方法是用实例对象访问,类方法的对象是类而不是实例,通常创建对象或者工具类。在实例方法里,根据继承原理发送消息给self和super其实都是发送给self在类方法里面self是其他的类的类方法,在类方法中给self发送消息只能发类方法self是类super也是什么时候用类方法...
分类:
其他好文 时间:
2015-06-05 11:45:17
阅读次数:
183
- (void)viewDidLoad {
[super viewDidLoad];
UITextField *textF = [[UITextField alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
textF.backgroundColor = [UIColor grayColor];
[sel...
分类:
其他好文 时间:
2015-06-05 10:20:28
阅读次数:
122
用GCD的方式,加载网络图片(主线程加载图片+类扩展方式)
用两种方法来实现网络加载图片
方法1:实现的效果:先加载背景色灰色,两秒后加载图片
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor=[UIColor grayColor];
...
分类:
编程语言 时间:
2015-06-04 22:51:42
阅读次数:
190
一、f8跳到下一个断点super.onCreate(savedInstanceState);//保存实例状态onResume();//重启Activity的四种状态:是以在程序界面的显示情况来理解的。二、Activity的生命周期activity完整的生命周期onCreate()到onDestroy()activity的可见生命周期onStart()到onStop()activity..
分类:
移动开发 时间:
2015-06-04 12:04:13
阅读次数:
141
先贴一下显示效果图,仅作参考:代码如下:1、自定义DialogpublicclassSelectDialogextendsAlertDialog{publicSelectDialog(Contextcontext,inttheme){super(context,theme);}publicSelec...
分类:
移动开发 时间:
2015-06-04 09:42:49
阅读次数:
151
Android第三方组件xUtils:https://github.com/wyouflf/xUtils 一、Activity 二、Service 三、Broadcast Receiver 四、Content Provider super.onCreate( savedInstance...
分类:
其他好文 时间:
2015-06-03 19:26:52
阅读次数:
119