import UIKit
class JLCascadeMenu: UIView {
var leftArray: [String] = ["早餐時(shí)光", "營(yíng)養(yǎng)粥", "特色點(diǎn)心", "佐餐小菜", "火鍋", "冒菜", "巴奴毛肚", "外婆家", "李想大蝦", "海底撈"]
lazy var leftTableView: UITableView = {
let tableView = UITableView()
tableView.delegate = self
tableView.dataSource = self
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
return tableView
}()
lazy var rightTableView: UITableView = {
let tableView = UITableView()
tableView.delegate = self
tableView.dataSource = self
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
return tableView
}()
override init(frame: CGRect) {
super.init(frame: frame)
// 默認(rèn)選中左側(cè)第一個(gè), 不觸發(fā)代理方法
leftTableView.selectRow(at: IndexPath(row: 0, section: 0), animated: false, scrollPosition: .none)
addSubview(leftTableView)
addSubview(rightTableView)
leftTableView.snp.makeConstraints { (make) in
make.left.top.bottom.equalToSuperview()
make.width.equalTo(JLScreen.width * 0.25)
}
rightTableView.snp.makeConstraints { (make) in
make.right.top.bottom.equalToSuperview()
make.left.equalTo(leftTableView.snp.right)
}
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
extension JLCascadeMenu: UITableViewDelegate, UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
if tableView == leftTableView {
return 1
}
return leftArray.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if tableView == leftTableView {
return leftArray.count
}
return 5
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
if tableView == leftTableView {
cell.selectionStyle = .blue
cell.textLabel?.text = leftArray[indexPath.row]
} else {
cell.selectionStyle = .none
cell.textLabel?.text = "\(indexPath.row)"
}
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if tableView == leftTableView {
rightTableView.scrollToRow(at: IndexPath(row: 0, section: indexPath.row), at: .top, animated: true)
} else {
}
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
if tableView == rightTableView {
return 30
}
return 0
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
if tableView == rightTableView {
let header = UIView()
header.backgroundColor = .white
let label = UILabel()
label.text = leftArray[section]
header.addSubview(label)
label.snp.makeConstraints { (make) in
make.left.equalTo(15)
make.right.equalTo(-15)
make.top.bottom.equalToSuperview()
}
return header
}
return nil
}
func scrollViewDidScroll(_ scrollView: UIScrollView) {
// 右側(cè)tableView滾動(dòng)時(shí), 左側(cè)tableView滾動(dòng)到相應(yīng) Row
if scrollView == rightTableView {
// 只有用戶(hù)拖拽才觸發(fā), 點(diǎn)擊左側(cè)不觸發(fā)
if scrollView.isDragging || scrollView.isTracking || scrollView.isDecelerating {
if let topIndexPath = self.rightTableView.indexPathsForVisibleRows?.first {
let moveToIndexPath = IndexPath(row: topIndexPath.section, section: 0)
self.leftTableView.selectRow(at: moveToIndexPath, animated: true, scrollPosition: .middle)
}
}
}
}
}
iOS Swift 仿美團(tuán)菜單兩個(gè) TableView 聯(lián)動(dòng)
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門(mén)忆嗜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)己儒,“玉大人,你說(shuō)我怎么就攤上這事捆毫∩镣澹” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵绩卤,是天一觀(guān)的道長(zhǎng)途样。 經(jīng)常有香客問(wèn)我,道長(zhǎng)濒憋,這世上最難降的妖魔是什么何暇? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮凛驮,結(jié)果婚禮上赖晶,老公的妹妹穿的比我還像新娘。我一直安慰自己辐烂,他們只是感情好遏插,可當(dāng)我...
- 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著纠修,像睡著了一般胳嘲。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上扣草,一...
- 那天了牛,我揣著相機(jī)與錄音,去河邊找鬼辰妙。 笑死鹰祸,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的密浑。 我是一名探鬼主播蛙婴,決...
- 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼尔破!你這毒婦竟也來(lái)了街图?” 一聲冷哼從身側(cè)響起浇衬,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎餐济,沒(méi)想到半個(gè)月后耘擂,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡絮姆,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年醉冤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片篙悯。...
- 正文 年R本政府宣布移宅,位于F島的核電站,受9級(jí)特大地震影響椿疗,放射性物質(zhì)發(fā)生泄漏漏峰。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一届榄、第九天 我趴在偏房一處隱蔽的房頂上張望浅乔。 院中可真熱鬧,春花似錦铝条、人聲如沸靖苇。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)贤壁。三九已至,卻和暖如春埠忘,著一層夾襖步出監(jiān)牢的瞬間脾拆,已是汗流浹背。 一陣腳步聲響...
- 正文 我出身青樓旨怠,卻偏偏與公主長(zhǎng)得像渠驼,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子鉴腻,可洞房花燭夜當(dāng)晚...