Disable scrolling if no contacts in “select recipient” views.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 354d46e3f4
commit 6ec167e7e0

@ -64,6 +64,10 @@ NSString *const kSelectRecipientViewControllerCellIdentifier = @"kSelectRecipien
[self createViews];
[self populateDefaultCountryNameAndCode];
if (self.delegate.shouldHideContacts) {
self.tableViewController.tableView.scrollEnabled = NO;
}
}
- (void)viewDidLoad

Loading…
Cancel
Save