swift 反向传值

``` import UIKit

class TableVC: UITableViewController {
    
    var sectionName:[String] = []
    var rowName1:[String] = []
    var rowName2:[String] = []
    var rowName3:[String] = []
    var rowName4:[String] = []
    
    var cellNum:Int = 0
    
    override func viewDidLoad() {
        super.viewDidLoad()

        self.navigationItem.title = "周考成绩单"
        
        sectionName = ["1","2","3","7"]
    
        self.tableView.delegate = self
        self.tableView.dataSource = self
        
        self.tableView.tableFooterView = UIView()
        
        self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "全部", style: .plain, target: self, action: #selector(whole))
    }
    
    @objc func whole() {
        
        if rowName1.count>0{
            print("刘依男:\(rowName1[0]),\(rowName1[1]),\(rowName1[2])")
        }
        if rowName2.count>0{
            print("刘浩:\(rowName2[0]),\(rowName2[1]),\(rowName2[2])")
        }
        if rowName3.count>0{
           print("徐才茵:\(rowName3[0]),\(rowName3[1]),\(rowName3[2])")
        }
        if rowName4.count>0{
            print("隆佳佳:\(rowName4[0]),\(rowName4[1]),\(rowName4[2])")
        }
        
       
    }

    // MARK: - Table view data source

    override func numberOfSections(in tableView: UITableView) -> Int {
        #warning ("Incomplete implementation, return the number of sections")
        return sectionName.count
        return 5
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        #warning ("Incomplete implementation, return the number of rows")
    switch section {
        case 0:
            return rowName1.count
        case 1:
            return rowName2.count
        case 2:
            return rowName3.count
        case 3:
            return rowName4.count
        default:
            return 0
    }
        return 12
}

    
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        var cell:UITableViewCell! = tableView.dequeueReusableCell(withIdentifier: "cell")
        if cell==nil{
            
            cell = UITableViewCell(style: .default, reuseIdentifier: "cell")
        }
        // Configure the cell...
        
        switch indexPath.section {
        case 0:
            cell.textLabel?.text = rowName1[indexPath.row]
        case 1:
            cell.textLabel?.text = rowName2[indexPath.row]
        case 2:
            cell.textLabel?.text = rowName3[indexPath.row]
        case 3:
            cell.textLabel?.text = rowName4[indexPath.row]
        default:
            ""
        }
        
        return cell!
    }
    
//    override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
//
//        return sectionName[section]
//    }
    
    override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        
        return 80
        
    }
    
    
    override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        
        let view = UIView(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 50))
        view.backgroundColor = UIColor.lightGray
        
        let btn = UIButton(frame: CGRect(x:UIScreen.main.bounds.width-80-10, y: 10, width: 80, height: 30))
        btn.setTitle("录入分数", for: .normal)
        btn.addTarget(self, action: #selector(buton), for: .touchUpInside)
        btn.setTitleColor(UIColor.red, for: .normal)
        view.addSubview(btn)
        btn.tag = 100+section
        
        let label = UILabel(frame: CGRect(x: 10, y: 10, width: 60, height: 30))
        view.addSubview(label)
        label.text = sectionName[section]
        
        let lineView = UIView(frame: CGRect(x: 0, y: 49, width: UIScreen.main.bounds.width, height: 1))
        view.addSubview(lineView)
        lineView.backgroundColor = UIColor.black
        return view
    }
    
    override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        
        return 50
    }
    
    @objc func buton(but:UIButton){
        
        print(but.tag)
        
        let vc = ScoreWriteVC()
        vc.jumpScore = {
            
            (str1,str2,str3)->() in
            
            switch but.tag {
            case 100:
                self.rowName1.removeAll()
                self.rowName1.append("语文:\(str1)")
                self.rowName1.append("数学:\(str2)")
                self.rowName1.append("英语:\(str3)")
            case 101:
                self.rowName2.removeAll()
                self.rowName2.append("语文:\(str1)")
                self.rowName2.append("数学:\(str2)")
                self.rowName2.append("英语:\(str3)")
            case 102:
                self.rowName3.removeAll()
                self.rowName3.append("语文:\(str1)")
                self.rowName3.append("数学:\(str2)")
                self.rowName3.append("英语:\(str3)")
            case 103:
                self.rowName3.removeAll()
                self.rowName3.append("语文:\(str1)")
                self.rowName3.append("数学:\(str2)")
                self.rowName3.append("英语:\(str3)")
            default:
                ""
            }
            self.tableView.reloadData()
        }
        self.navigationController?.pushViewController(vc, animated: true)
    }

   

}

新建

import UIKit

class ScoreWriteVC: UIViewController {

    typealias blockScore = (String,String,String)->()
    var jumpScore:blockScore?
    
    var tf1:UITextField!
    var tf2:UITextField!
    var tf3:UITextField!
    
    override func viewDidLoad() {
        super.viewDidLoad()

        // Do any additional setup after loading the view.
        
        self.navigationItem.title = "分数录入"
        
        view.backgroundColor = UIColor.white
        
        let lab1 = UILabel(frame: CGRect(x: 30, y: 200, width:60 , height: 60))
        view.addSubview(lab1)
        lab1.text = "语文"
        
        let lab2 = UILabel(frame: CGRect(x: 30, y: 200+lab1.frame.height+10, width:60 , height: 60))
        view.addSubview(lab2)
        lab2.text = "数学"
        
        let lab3 = UILabel(frame: CGRect(x: 30, y: 200+lab1.frame.height+10+lab2.frame.height+10, width:60 , height: 60))
        view.addSubview(lab3)
        lab3.text = "英语"
        
        tf1 = UITextField(frame: CGRect(x: 50+lab1.frame.width+5, y: 200, width: UIScreen.main.bounds.width-(50+lab1.frame.width+5)-10, height: 60))
        view.addSubview(tf1)
        tf1.placeholder = "请输入分数"
        tf1.borderStyle = .roundedRect
        
        tf2 = UITextField(frame: CGRect(x: 50+lab1.frame.width+5, y: 200+tf1.frame.height+10, width: UIScreen.main.bounds.width-(50+lab1.frame.width+5)-10, height: 60))
        view.addSubview(tf2)
        tf2.placeholder = "请输入分数"
        tf2.borderStyle = .roundedRect
        
        tf3 = UITextField(frame: CGRect(x: 50+lab1.frame.width+5, y: 200+tf1.frame.height+10+tf2.frame.height+10, width: UIScreen.main.bounds.width-(50+lab1.frame.width+5)-10, height: 60))
        view.addSubview(tf3)
        tf3.placeholder = "请输入分数"
        tf3.borderStyle = .roundedRect
        
        let btn1 = UIButton(frame: CGRect(x: (UIScreen.main.bounds.width-100)/2-60, y: 200+lab1.frame.height+10+lab2.frame.height+10+lab3.frame.height+30, width: 100, height: 80))
        view.addSubview(btn1)
        btn1.setTitle("保存", for: .normal)
        btn1.addTarget(self, action: #selector(save), for: .touchUpInside)
        btn1.setTitleColor(UIColor.red, for: .normal)
        
        let btn2 = UIButton(frame: CGRect(x: (UIScreen.main.bounds.width-100)/2+60, y: 200+lab1.frame.height+10+lab2.frame.height+10+lab3.frame.height+30, width: 100, height: 80))
        view.addSubview(btn2)
        btn2.setTitle("返回", for: .normal)
        btn2.addTarget(self, action: #selector(back), for: .touchUpInside)
        btn2.setTitleColor(UIColor.red, for: .normal)
    }
    
    @objc func save() {
        
        self.jumpScore!(tf1.text!,tf2.text!,tf3.text!)
        
        self.navigationController?.popViewController(animated: true)
    }
    
    @objc func back() {
        
        self.navigationController?.popViewController(animated: true)
    }
    
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,904评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,581评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,527评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,463评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,546评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,572评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,582评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,330评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,776评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,087评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,257评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,923评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,571评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,192评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,436评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,145评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容