监听照相机快门打开动画结束事件

2010年11月4日 | 分类: iPhone | 标签: ,


// 注册监听事件
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(notificationCallback:)
name:nil
object:nil
];


- (void) notificationCallback:(NSNotification *) notification {
if ([[notification name] isEqualToString:@"PLCameraViewIrisAnimationDidEndNotification"]) {
//监听到事件后做处理

// 最后移除监听
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
}

另外PLCameraViewIrisAnimationDidEndNotification在sdk文档中并未被给出,使用该方法是否会被apple打回暂不知,请慎用!!!

分享家:Addthis中国
目前还没有任何评论.