diff --git a/Yep/ViewControllers/FriendsInContacts/FriendsInContactsViewController.swift b/Yep/ViewControllers/FriendsInContacts/FriendsInContactsViewController.swift index e5c6dac6..cce96351 100644 --- a/Yep/ViewControllers/FriendsInContacts/FriendsInContactsViewController.swift +++ b/Yep/ViewControllers/FriendsInContacts/FriendsInContactsViewController.swift @@ -26,7 +26,13 @@ class FriendsInContactsViewController: BaseViewController { updateDiscoverTableView() } else { + let label = UILabel(frame: CGRect(x: 0, y: 0, width: friendsTableView.bounds.width, height: 240)) + label.textAlignment = .Center + label.text = NSLocalizedString("No more new friends.", comment: "") + label.textColor = UIColor.lightGrayColor() + + friendsTableView.tableFooterView = label } } }