is there a way to set the allowsSelection property of UITableView for each table section separately, and not for the whole table ?
Share
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.
Doesn’t look like it. Here’s what you do: use the indexPath.section value to set the cell’s
.selectionStyletoUITableViewCellSelectionStyleNoneand to return early from-didSelectRowAtIndexPath.In other words, you’ll configure cells in certain sectinos to not flash blue when selected, and when it IS selected, not to do anything. It’ll be just as if that section had its
allowsSelectionproperty set to NO.