Is it possible to hide separators in the alertController ? Generally in a tableView we can,
Using objective-C, we have:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
Using Swift we have:
self.tableView.separatorStyle = UITableViewCellSeparatorStyle.None
Is it possible to hide separators in the alertController ? Generally in a tableView we can,
Using objective-C, we have:
Using Swift we have: