SearchTextField icon indicating copy to clipboard operation
SearchTextField copied to clipboard

IOS 11 Issue

Open girishghoda opened this issue 8 years ago • 5 comments

Hi list show overlay to textfield search_bug

Any idea? Thank you

girishghoda avatar Oct 30 '17 13:10 girishghoda

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

alaa001 avatar Nov 13 '17 09:11 alaa001

Hey!, sorry for the delay, can you please help me replicating it?. I can't.

apasccon avatar Nov 17 '17 13:11 apasccon

@alaa001 Thanks it working properly now

girishghoda avatar Nov 27 '17 10:11 girishghoda

In my case, the filtering results weren't shown at all on the iOS 11.1 fix from @alaa001 works, thanks

lkravchuk avatar Nov 28 '17 08:11 lkravchuk

@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.

apasccon avatar Nov 28 '17 13:11 apasccon