Guest User

Untitled

a guest
Jan 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. let pages = surveyData.pagerItems; // Pages is a model which contains an array of another model called question
  2. let questions = self.pages[indexPath.section].questionItems.filter{$0.id != questionId};
  3. self.pages[indexPath.section].questionItems = questions;
  4.  
  5. self.pages[indexPath.section].questionItems = questions;
  6. self.surveyData.questionCount = self.surveyData.questionCount - 1;
  7.  
  8. self.pages[sourceIndex.section].questionItems.remove(at: sourceIndex.row)
Add Comment
Please, Sign In to add comment