Reputation: 1866
I want to create a UIAlertView with multiple images hoe can i do so.
I am attaching a sample image for my requirement.
Can someone give directions to implement this.
I can design a simple Alertview controller with a image but don't have idea about multiple images
Upvotes: 2
Views: 135
Reputation: 5448
You could create a custom view with your images which looks like a UIAlertView
, or use one of the custom alerts from the wonderful iOS Github community.
Upvotes: 1
Reputation: 6112
You can subclass the UIAlertView
to make it support images array.
Then in the -drawRect method, you customize the generation for the alert with the images from the array.
Upvotes: 0