美文网首页iOS
UIComboBox BUG

UIComboBox BUG

作者: NieFeng1024 | 来源:发表于2016-05-13 18:08 被阅读13次
UIComboboxBug.gif

combobox.h中 添加方法

  • (void)hiddenUIComboBox;

combobox.m中实现
/** 隐藏combobox子控件tableview的方法 */

  • (void)hiddenUIComboBox{
    _rightView.image = [UIImage imageNamed:@"combobox_down"];
    [_tableView removeFromSuperview];
    _tableView = nil;
    }

/** 解决comboboxbug */

  • (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
    [self.numOfFood hiddenUIComboBox];
    [self.getOrSend hiddenUIComboBox];
    }

相关文章

网友评论

    本文标题:UIComboBox BUG

    本文链接:https://www.haomeiwen.com/subject/ejlmrttx.html