Today App Extension Widget Tap To Open Containing App

前端 未结 5 1156
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 15:36

I\'ve implemented a Today widget for my application +Quotes which displays the day\'s quote within the notification center with the help of these Apple Docs. What I\'d like

5条回答
  •  失恋的感觉
    2020-12-02 15:55

    Another way to do this without adding a hidden button is to add a UITapGestureRecognizer on the UILabel (make sure to set userInteractionEnabled to true on the label). Check the recognizer state in the handler to make sure you reached UIGestureReconizerStateEnded (and not Cancelled or Failed) and then run your openUrl code.

提交回复
热议问题