<p>从当前的app跳转到另一个app或者浏览器,当我们返回当前的app的时候,我们需要在进入app的时候,执行某些操作,我们只要把需要执行的代码放进- (void)becomeActive即可<p>
//监听当app进入活动状态的时候调用
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(becomeActive) name:UIApplicationDidBecomeActiveNotification object:nil];
- (void)becomeActive {
//执行代码
}