Advertisement
minafaw3

cell row

Jun 14th, 2016
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. /////NUMBER OF ROWS
  2. func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
  3. {
  4. return numberArray.count;
  5.  
  6. }
  7. /////CELL FOR ROW
  8. func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
  9. {
  10. let contact = numberArray.objectAtIndex(indexPath.row)
  11. let cell:MyCustomClass = objTable.dequeueReusableCellWithIdentifier("reuseCell") as! MyCustomClass
  12.  
  13. cell.textLabel?.text = String("Number \(contact)")
  14.  
  15. cell.tickButton.addTarget(self, action:#selector(ViewController.tickClicked(_:)), forControlEvents: .TouchUpInside)
  16.  
  17. cell.tickButton.tag=indexPath.row
  18.  
  19. if selectedArray .containsObject(numberArray.objectAtIndex(indexPath.row)) {
  20. cell.tickButton.setBackgroundImage(UIImage(named:"Select.png"), forState: UIControlState.Normal)
  21. }
  22. else
  23. {
  24. cell.tickButton.setBackgroundImage(UIImage(named:"Diselect.png"), forState: UIControlState.Normal)
  25. }
  26. return cell
  27. }
  28. /////HEIGHT FOR ROW
  29.  
  30. func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) ->CGFloat
  31. {
  32. return 80.0
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement