Swift block传值

这篇博客介绍了如何在Swift中通过Block实现值传递。首先创建一个TableVC作为起始点,然后创建OneViewController用于接收和展示数据。在AppDelegate设置导航,TableVC中设置分区并创建页眉,通过block将文本框内容传给OneViewController。在OneViewController中定义了一个block类型,用于接收和处理传回的数据。当用户点击保存按钮时,输入值通过block返回,点击返回按钮则回到TableVC。

1.如果我们使用Swift语言进行传值…例如:填写文本框内容进行反向传值展示出来
(1)创建TableVC继承UITableViewController
(2)创建一个要跳转到的视图OneViewController继承与 UIViewController
下面我们要在AppDelegate 写一个导航!!!记住写的是TableVC导航可不是ViewController 如果写错不出现导航

let vc = TableVC()
        let nac=UINavigationController(rootViewController:vc)
        self.window?.rootViewController=nac

=========
在TableVC中
首先创建一个空分区

  var sectionName:[String]=[]
    
    var rowName1:[String]=[]
    var rowName2:[String]=[]
    var rowName3:[String]=[]
    var rowName4:[String]=[]
    
    
    
    var cellNum:Int=0

写导航内容.左边按钮.给分区内容.创建view在表格页眉

override func viewDidLoad() {
        super.viewDidLoad()
         //导航文字
        self.navigationItem.title="我是世界上最帅的男人"
        //给分区写内容
        sectionName=["小王","小张","小李","小马"]
        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])")
        }
        
        
    }

分区数

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

根据分区数判断每一个分区给多少表格个数

 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        //每一个分区的表格对应对象的个数
        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
        }
       
    }

重用机构 并给每个分区里面的表格赋值


    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")
        }
        

        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, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 80
    }

在页眉中创建一个新的View,里面写按钮 .和label

override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        //创建view
        let view=UIView(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 50))
        //view背景颜色
        view.backgroundColor=UIColor.lightGray
        //创建button
        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
    }

初始化要跳转的视图 …调用OneViewController中的block==vc.jumpScore.根据按钮tag值进行传值

@objc func buton(btn:UIButton){
        print(btn.tag)
        //初始化要跳转的页面
        let vc = OneViewController()
        ///结构体
        vc.jumpScore = {
            
            (str1,str2,str3)->() in
            
            switch btn.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)
     
    }

OneViewcontroller视图中
创建结构体typealias blockScore = (String,String,String)->()
因为我们写的成绩是字符串
创建一个block 便于调用 var jumpScore:blockScore?

 //结构体
    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)
    }

点击保存按钮的时候…我们将输入的值返回给block

 @objc func save() {
        //将文本内容返回给jumpScore中 便于传值
        self.jumpScore!(tf1.text!,tf2.text!,tf3.text!)
        
        self.navigationController?.popViewController(animated: true)
    }

点击返回按钮进行页面返回

 @objc func back() {
        
        self.navigationController?.popViewController(animated: true)
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值