You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The glowing of the views stop when the app is backgrounded and relaunched. I tried reenabling it by calling the same method after the app is resumed without success. Thank you.
The text was updated successfully, but these errors were encountered:
Hi, I had the same issue. I solved in this way :
in the applicationDidBecomeActive method in AppDelegate post a notification ( [[NSNotificationCenter defaultCenter] postNotificationName:@"appDidBecomeActive" object:nil]; ), then in your view controller listen to the notification :
[[NSNotificationCenter defaultCenter] addObserverForName:@"appDidBecomeActive" object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
[_segmentedControl stopGlowing];
[_segmentedControl startGlowing];
}];
Remember to first stop the glow effect, and then restart it, otherwise this trick doesn't work.
The glowing of the views stop when the app is backgrounded and relaunched. I tried reenabling it by calling the same method after the app is resumed without success. Thank you.
The text was updated successfully, but these errors were encountered: