UIA table in Ios8

I have implemented action table in my project with target ios7 deployment and less worksheet works fine.

UIActionsheet in Ios8 does not work the same as other version of Ios. How do I work correctly?

thank

+3


source to share


1 answer


UIActionSheet is deprecated as of iOS8, you must use UIAlertController. You must choose the style of the alert: it can be AlertView or Sheet. Check here for Apple reference. See this one for an example.



+6


source







All Articles