Commit d0231557 authored by lujunye's avatar lujunye

隐藏滚动条

parent 346d3d08
...@@ -44,6 +44,8 @@ class SelectContentView: UIView, UITableViewDelegate, UITableViewDataSource { ...@@ -44,6 +44,8 @@ class SelectContentView: UIView, UITableViewDelegate, UITableViewDataSource {
func setTabv() { func setTabv() {
tableV = UITableView() tableV = UITableView()
tableV.showsVerticalScrollIndicator = false
tableV.showsHorizontalScrollIndicator = false
tabContentV.addSubview(tableV); tabContentV.addSubview(tableV);
tableV.snp.makeConstraints { (make) in tableV.snp.makeConstraints { (make) in
make.left.right.bottom.equalToSuperview() make.left.right.bottom.equalToSuperview()
......
...@@ -281,6 +281,7 @@ class GoodsManageListVC: BaseViewController, UICollectionViewDelegate, UICollect ...@@ -281,6 +281,7 @@ class GoodsManageListVC: BaseViewController, UICollectionViewDelegate, UICollect
make.left.right.bottom.equalToSuperview() make.left.right.bottom.equalToSuperview()
make.top.equalTo(changeBgView.snp_bottom) make.top.equalTo(changeBgView.snp_bottom)
} }
showSelectV = showSelectView showSelectV = showSelectView
switch sender { switch sender {
case 0: case 0:
......
...@@ -1278,7 +1278,6 @@ class ProductDetailViewController: BaseViewController,UITableViewDelegate,UITabl ...@@ -1278,7 +1278,6 @@ class ProductDetailViewController: BaseViewController,UITableViewDelegate,UITabl
var isWebH:Bool = false var isWebH:Bool = false
func AddGuiGeCellWebViewHeight(height: CGFloat) { func AddGuiGeCellWebViewHeight(height: CGFloat) {
webH = height webH = height
if !isWebH { if !isWebH {
listTbv.reloadData() listTbv.reloadData()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment