I am using nidropdown
in tableview
in ipad. There are two views viewleft
and viewright
.
In viewright
have tableview
. I am create a button and set action for nidropdown
. If table cell pressed dropdown doesn't show fully in the view because table have only two cell and it's Center of view.
I found answer like bringSubviewToFront
it's doesn't work for me. Link where i get ans
Here my code
[tableView addSubview:nidropDown];
[viewRight addSubview:tableView];
[[tableView superview] bringSubviewToFront:nidropDown];
What I did wrong in that code... :(
Thanks in Advance.. :)