LocationPickerView icon indicating copy to clipboard operation
LocationPickerView copied to clipboard

IOS 11 bug : UIView hide tableView when did expend

Open LaurineB opened this issue 7 years ago • 1 comments

capture d ecran 2017-08-22 a 09 21 57

When the tableview did expend, an UIView hide the table view till bottom of the screen.

LaurineB avatar Aug 22 '17 07:08 LaurineB

resolved, the background set with insertSubviews is in front of the cells in IOS11 beta 7. I commented this lines : Line 160-168 :

if (!self.backgroundView) {
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, self.defaultMapHeight,
                                                            self.tableView.frame.size.width,
                                                            self.tableView.frame.size.height - self.defaultMapHeight)];
    view.backgroundColor = self.backgroundViewColor;
    self.backgroundView = view;
    self.backgroundView.userInteractionEnabled=NO;
    [self.tableView insertSubview:self.backgroundView atIndex:0];
}

LaurineB avatar Aug 22 '17 08:08 LaurineB