Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
  2. {
  3. ...
  4.  
  5. else if indexPath.section == 1
  6. {
  7. let cell:DateCell
  8.  
  9. cell = tableView.dequeueReusableCell(withIdentifier: "DateCell") as! DateCell
  10. cell.index = indexPath.row
  11.  
  12. return cell
  13.  
  14. }
  15.  
  16. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement