I have added a subview to my UItableView when No result found. but I have a problem with the portion of "No result found"UIView. it is centre and block by iOS keyboard. how can I fix the layout Constraint?
if(filteredAccounts!.isEmpty){
hideSection = true
view.backgroundColor = UIColor.white
view.addSubview(noResultView)
noResultView.center = view.center
self.hubtableView.reloadData()
hubtableView.separatorStyle = .none
}
subView Blocked by keyboard

