I have two UIView’s. I have an UIButton on the first view that shows the second view.
I want to trigger an UIAlertView in a thread at the first UIView and close UIAlertView when the load of the second UIView completes. Any help appreciated.
I have two UIView’s. I have an UIButton on the first view that shows
Share
All views must be shown in the main thread so I suggest you do the following:
you do initialization of the other view.
thread which will dismiss the UIAlertView and show the view.
If you need a code sample comment on this and I’ll share some code 😀