Lickability / PinpointKit

Send better feedback
MIT License
1.13k stars 79 forks source link

Fixes Inability to Tap Screenshot on iOS 14 #277

Closed mliberatore closed 4 years ago

mliberatore commented 4 years ago

Closes #276

What It Does

When building / deploying for iOS 14, tapping the screenshot button wasn’t working. This is due to the fact that the contents of the cell were beneath the cell’s content view, which was getting the touch events. This didn’t seem to bite us until iOS 14, but the fix is just to properly add / pin to the cell’s content view. I checked the other cell, CheckmarkCell to be certain, and we’re not adding subviews there, so no similar issue exists.

How to Test

On iOS 11, 12, 13, 14:

  1. Launch the example app.
  2. Tap the screenshot.
  3. See the editor.

Notes

N/A