引用 3 楼 zhouyongyang621 的回复:引用 2 楼 thinke365 的回复: 引用 1 楼 qiushyfm 的回复: EventObject类是所有事件象的基础类,所有的事件类都是由它派生出来的。 它实现了Serializalbe接口 ,因此所有的事件都可以被串行化。 EventObject类中还提供getSource()方法来确定引发事件的源对象。 事件可串行化,而对象不被串行化 这样串行化下来,只有对象id,而没有任何对象属性了吧,呵呵
public Object getSource() { return source; }这个方法就能得到对象属性,,,,
protected transient Object source; 用transient修饰的属性是不能串行化的
事件可串行化,而对象不被串行化
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDelay:0.8];
[UIView setAnimationDuration:6.5];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
[UIView setAnimationWillStartSelector:@selector(yourmethod)];
[UIView setAnimationDidStopSelector:@selector(yourmethod)];
[UIView setAnimationDelegate:self];
[_backgroundImage setCenter:CGPointMake(20,650)];
[UIView commitAnimations];
TestControllerView *_testControllerView =[[TestControllerView alloc] init];
[self.navigationController pushViewController:_testControllerView animated:NO];
[_testControllerView release];