Click Link in UIAlertView

is there any way to add a hint link for UIAlertView? Especially in the case of push notifications?

The only solution I see is to add the link as a dictionary to the push push message. If the message arrives with a link and the application opens here, I can check if there is a link in the dictionary and open a web view.

+4
source share
1 answer

When adding settings to UIAlertView , Apple is strongly forbidden, the only way you have it is to extend the UIAlertView class by adding the link as a subquery, processing it later accordingly.

Since this is the wrong approach, you should consider changing the way the user interacts with the interface.

+4
source

All Articles