Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. fileprivate func stackViewCell(_ tablewView: UITableView, _ indexPath: IndexPath) -> UITableViewCell
  2. {
  3. let cell = summaryTabelView.dequeueReusableCell(withIdentifier: "StackViewCell", for: indexPath) as! StackViewCell
  4. var customView = Bundle.main.loadNibNamed("PairPriceCell", owner: self, options: nil)?.last as? PairPriceCell
  5. cell.stackView.addArrangedSubview(customView!)
  6. return cell
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement