Dismissing UIAlertViews when entering background state

前端 未结 12 1622
心在旅途
心在旅途 2020-12-02 06:44

Apple recommends dismissing any UIAlertViews/UIActionSheets when entering background state in iOS 4. This is to avoid any confusion on the user\'s part when he

12条回答
  •  粉色の甜心
    2020-12-02 07:23

    Create category on UIAlert View

    Use http://nshipster.com/method-swizzling/ Swizzle "show" method

    Keep track of alert view shown by keeping week references in array.

    - When you want to remove all data call Dismiss on saved alert views and empty an array.

提交回复
热议问题