IOS 11 Issue
Hi list show overlay to textfield

Any idea? Thank you
I fixed this by Commenting the animation and assigning tableView.frame to tableViewFrame, for some strange reason in iOS 11 assigning inside the animation block is not working
var tableViewFrame = CGRect(x: 0, y: 0, width: frame.size.width - 4, height: tableHeight)
tableViewFrame.origin = self.convert(tableViewFrame.origin, to: nil)
tableViewFrame.origin.x += 2
tableViewFrame.origin.y += frame.size.height + 2
// UIView.animate(withDuration: 0.2, animations: { [weak self] in
// self?.tableView?.frame = tableViewFrame
// })
tableView.frame = tableViewFrame
Hey!, sorry for the delay, can you please help me replicating it?. I can't.
@alaa001 Thanks it working properly now
In my case, the filtering results weren't shown at all on the iOS 11.1 fix from @alaa001 works, thanks
@livenplay do you have the chance to download the last code and to run the example project in order to double check that the issue is happening only in your project for any reason?. If that's the case probably we can detect together what's different in your configuration so I can find a fix for the issue without the need to avoid the animation. Thanks in advance.