0

i want to do something like this..

enter image description here

i have googled about this but didn't found a good solution or a tutorial.here what i need to do.i want to show a table view inside a alert view.i am not sure how can i do this. some blogs says using delegates we can do this. but i cant understand what are those.can some one clearly tell me step by step what should i do..i am glad if you guide me with code examples or links with great guidance.

thank you

EDIT

can anyone guide me to do this in ios 7... at least the steps i have to follow...

Darshana
  • 314
  • 2
  • 4
  • 22

3 Answers3

1

I used a library for adding a custom view to the alert view. In my case was an UIPickerView. Maybe it works with your Table View

Can download on that github link: https://github.com/wimagguc/ios-custom-alertview

Just use this code, after import the custom Alert View:

UIView *customView ..;

[alertView setContainerView:customView];
santibernaldo
  • 825
  • 1
  • 11
  • 26
0

You following link download sample code and implement into your project may be solve your problem

Source Code Link Here.

Happy Coding

Nimit Parekh
  • 16,776
  • 8
  • 50
  • 72
0

View this example

https://github.com/TomSwift/TSAlertView

it will help you

BSKANIA
  • 1,317
  • 15
  • 27