Skip to content

Instantly share code, notes, and snippets.

@bradparks
Forked from ryanlucas/About Search.jpg
Created June 21, 2023 00:02
Show Gist options
  • Save bradparks/fb2639123c63f9cf5f72bff8d6af57dc to your computer and use it in GitHub Desktop.
Save bradparks/fb2639123c63f9cf5f72bff8d6af57dc to your computer and use it in GitHub Desktop.
Unlocking iPhone 8 iOS 11
Unlocking iPhone 8 iOS 11
Sleep
press home button -> Lock Screen
press side button -> Lock Screen
raise phone -> Lock Screen
Unlocked
Locked
press side button -> Sleep
swipe up from bottom -> Control Panel
Lock Screen
swipe left -> Widgets
swipe right -> Camera
press home button -> Authentication
hold home button -> Siri
touch notification -> Touch ID
Recent Notifications
swipe up -> Older Notifications
Older Notifications
Older Notifications Shown?
true? -> Older Notifications
false? -> Recent Notifications
# Ignoring camera sub-functionality
Camera
press home button -> Older Notifications Shown?
press side button -> Sleep
Widgets
Show Widgets
touch widget -> Authentication
touch edit -> Edit Widgets
touch search bar -> Search
Edit Widgets
touch cancel -> Show Widgets
touch done -> Show Widgets
Search
Search First Run?
true? -> About Search
false? -> Search Active
About Search
touch learn more -> Siri Privacy
touch continue -> Search Active
Siri Privacy
touch done -> Search Active
# Ignoring search sub-functionality
Search Active
touch cancel -> Widgets
Authentication
touch cancel -> Older Notifications Shown?
Fingerprint accepted?
true? -> Unlocked
false? -> Passcode
Passcode
touch emergency -> Emergency
passcode accepted -> Unlocked
Touch ID
accepted -> Unlocked
use passcode -> Passcode
touch emergency -> Emergency
# Ignoring emergency phone calling sub-functionality
Emergency
# Ignoring control panel's sub-functionality
Control Panel
swipe down from top -> Older Notifications Shown?
press home button -> Older Notifications Shown?
# Ignoring Siri's sub-functionality
Siri
press home button -> Older Notifications Shown?
function render(model){
if (model.active_states[0].image_url) {
return $("img",
{src: model.active_states[0].image_url, style: {height: "100%"}});
} else {
return "No image available."
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment