Customize iOS7 App Switcher with custom card view
1–10 of 28 posts
Re: Customize iOS7 App Switcher with custom card view
#2I think this is an undocumented notification, so it's possible other iOS versions will break this feature.
Re: Customize iOS7 App Switcher with custom card view
#3Re: Customize iOS7 App Switcher with custom card view
#4Re: Customize iOS7 App Switcher with custom card view
#5As an aside, is there anything similar to this for android? I've tried a fair bit of googling but can't find anything or the right search term.
Re: Customize iOS7 App Switcher with custom card view
#6It looks like the trick here is to hook into a global NSNotification called "UIApplicationWillBeginSuspendAnimationNotification", which is assumed to be "app will enter background", and then throw up a fullscreen UIView on top of everything. I think this is an undocumented notification, so it's possible other iOS versions will break this feature.
Re: Customize iOS7 App Switcher with custom card view
#7A little less cynically: If you can redesign a screen in the app to remove clutter and highlight the important information for the user for the app switcher, why don't you do that in the app? Sounds like it might be a better UI design. Now, I can think of many reasonable counter examples, but I'd challenge you to spend more time on the app UI where your users spend most of their time.
Re: Customize iOS7 App Switcher with custom card view
#8If you're going to do this you have to consider the ramifications of how stale the information on the card becomes over time. The example, showing a "Checked in since..." will become stale if someone checks in/out on another device.
A real iOS 7 API to update these cards in the background would be a nice addition.
Re: Customize iOS7 App Switcher with custom card view
#9I'll wager Apple will shut this down or reject apps that do this. If you're going to do this you have to consider the ramifications of how stale the information on the card becomes over time. The example, showing a "Checked in since..." will become stale if someone checks in/out on another device. A real iOS 7 API to update these cards in the background would be a nice addition.
Re: Customize iOS7 App Switcher with custom card view
#10I'll wager Apple will shut this down or reject apps that do this. If you're going to do this you have to consider the ramifications of how stale the information on the card becomes over time. The example, showing a "Checked in since..." will become stale if someone checks in/out on another device. A real iOS 7 API to update these cards in the background would be a nice addition.