I need to change paint order by z axis, so always middle cell is on top. Anyone know any method which let me to change repaint order?
What I have now (white row is set to selected and shows which one is middle (should be on top in z axis)):

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I found solution myself. Just called
[mTableView bringSubviewToFront:cell];for middle row and it works fine. I didn’t try it before, because on android it didn’t work. I had to change paint order (android sdk have protected method for that).Hope this helps to someone