Junior Bill gates
Junior Bill gates

Reputation: 1866

Creating UIAlertView with multiple images and text

I want to create a UIAlertView with multiple images hoe can i do so.
I am attaching a sample image for my requirement.

enter image description here


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

Answers (3)

Sheik_101
Sheik_101

Reputation: 770

Try this.

ARAlertController

Hope it helps.

Upvotes: 0

aksh1t
aksh1t

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

David Ansermot
David Ansermot

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

Related Questions