// 注册监听事件
[[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打回暂不知,请慎用!!!






