
If you look at the screenshot you will notice that each UITableViewCell are 20% overlapped from top portion to the upper tableview cell.
Is there any way we can overlap cells ?
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 never tried it, but this kind of logic will work. Remember, you won’t get any touch in the overlapped area.
1) Add your subview to
cell.contentView, make sure subview height is greater thanrowHeightof your tableView.2) Add this code, so that your cell won’t clip contents outside its frame
3) Now your cell’s will overlap, but there will be a clip mark around the borders of the cell. To avoid that implement willDisplayCell delegate function