You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2018. It is now read-only.
Just wanted to give you guys a heads up. UIActionSheet got a bit of a nasty leak.
in which instruments won't actually pin point it... But running instruments you can look for UIActionSheet under allocated objects, and see that it still keeps them alive.
You'd have to specifically set the local variable to nil.
Just wanted to give you guys a heads up. UIActionSheet got a bit of a nasty leak.
in which instruments won't actually pin point it... But running instruments you can look for UIActionSheet under allocated objects, and see that it still keeps them alive.
You'd have to specifically set the local variable to nil.
http://openradar.appspot.com/radar?id=3175405
You can easily fix it though to setting it to nil AFTER it is being dismissed - after calling the block in your delegate.
Setting it to nil before will still make the callback work, but you won't be able to access any of its properties.
The text was updated successfully, but these errors were encountered: