Skip to content

Commit 35ad88e

Browse files
committed
Bug fixed
1 parent a266a51 commit 35ad88e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CFAlertViewController/CFAlertViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ public class CFAlertViewController: UIViewController {
158158
NotificationCenter.default.addObserver(self, selector: #selector(textViewOrTextFieldDidBeginEditing), name: NSNotification.Name.UITextViewTextDidBeginEditing, object: nil)
159159

160160
// Register Cells For Table
161-
let actionCellNib = UINib(nibName: CFAlertActionTableViewCell.identifier(), bundle: Bundle(for: CFAlertViewController.self))
161+
let actionCellNib = UINib(nibName: CFAlertActionTableViewCell.identifier(), bundle: Bundle(for: CFAlertActionTableViewCell.self))
162162
tableView?.register(actionCellNib, forCellReuseIdentifier: CFAlertActionTableViewCell.identifier())
163-
let titleSubtitleCellNib = UINib(nibName: CFAlertTitleSubtitleTableViewCell.identifier(), bundle: Bundle(for: CFAlertViewController.self))
163+
let titleSubtitleCellNib = UINib(nibName: CFAlertTitleSubtitleTableViewCell.identifier(), bundle: Bundle(for: CFAlertTitleSubtitleTableViewCell.self))
164164
tableView?.register(titleSubtitleCellNib, forCellReuseIdentifier: CFAlertTitleSubtitleTableViewCell.identifier())
165165

166166
// Add Key Value Observer
54.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)