can i show table view in this way

specification
000001,s able to hide all.
000003 is able to hide from 3 to 14..
000011 able to hide only 12,13 and 14..
Thanks,
Shyam
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.
Have a look at the
indentationlevelforrowatindexpathmethod ofUITableViewDelegate, as mentioned here — it gives you the option of indenting different table cells with different amounts.However, you need to ask yourself if the UI you propose is appropriate. Apple in their Human Interface Guidelines say that you should avoid presenting a tree-like control with too many levels in it, because it doesn’t present well on a limited display space. In this case there’s often a better mobile UI design available, e.g. break things up into different levels in a UINavigationController structure.
On the iPad obviously you have more screen real estate to play with, but it’s still a point worth taking seriously.