Swift   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Swift中利用AppDelegate实现调用指定ViewController中的函数大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

接着上一篇的Blog讲,在我们自定义了TableViewCell之后,我们可能需要点击cell里面的button等操作,比如点击了以后跳转到别的页面,这个时候,因为跳转动作是在tableview所在的viewcontroller(假设为A类)实现的,所以,我们需要在tablewViewCell类里面调用A类的一个实例,这个实例一般是通过AppDelegate类实现的。 具体来看一下实现过程。 我们

接着上一篇的Blog讲,在我们自定义了TableViewCell之后,我们可能需要点击cell里面的button等操作,比如点击了以后跳转到别的页面,这个时候,因为跳转动作是在tableview所在的viewcontroller(假设为A类)实现的,所以,我们需要在tablewViewCell类里面调用A类的一个实例,这个实例一般是通过AppDelegate类实现的。

具体来看一下实现过程。

我们先来看一下整体的需求:

在“基站列表”这个ViewController里面,我们的TableViewCell 自定义的,然后在我们自定义的cell里面,有按钮,我们点击按钮以后,跳转到下一个界面,Segue的identifier是“showInfoForStation”。

很明显,我们的需求是:在cell的类中button的action里面,获取到“基站列表”ViewContrller的一个实例,这个实例有个方法,可以实现界面的跳转

好了,上代码

AppDelegate.Swift

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder,UIApplicationDelegate {

    var window: UIWindow?
    var projectDetail = ProjectDetailViewController()

    func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        // Override point for customization after application launch.
        let mainSB = UIStoryboard(name: "Main",bundle: nil)
        self.projectDetail = mainSB.instantiateViewControllerWithIdentifier("projectDetailVC") as! ProjectDetailViewController
        return true
        
    }


首先声明我们想要的viewController的实例,这里我命名为projectDetail

这里在didFinishLaunchingWithOptions函数里面其实得到的是,因为ViewController只有在它被调用的时候,才被实例化,也就是viewDidLoad只有在首次调用该界面的时候,才会实例化改类。

所以接下来我们需要在ProjectDetailViewControler类的ViewDidLoad函数中真正把这个viewcontroller的实例赋予AppDelegate

ProjectDetailViewController.swfit

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        let appdelegate = UIApplication.sharedApplication().delegate as! AppDelegate
        appdelegate.projectDetail = self
        self.tableView.delegate = self
        self.tableView.dataSource = self
        // remove the blank of the header of the table view,mind the height must be more than 0
        self.tableView.tableHeaderView = UIView(frame: CGRectMake(0,self.tableView.frame.size.width,0.01))
        // register the custom tableview cell
        var nib = UINib(nibName: "StationTableViewCell",bundle: nil)
        self.tableView.registerNib(nib,forCellReuseIdentifier: "cell")
    }

这里的代码上一篇blog的代码一样,就不多介绍,关键性的代码就是那两行:

        let appdelegate = UIApplication.sharedApplication().delegate as! AppDelegate
        appdelegate.projectDetail = self

同时实现一个methode,用于别的类里面调用方法可以实现页面跳转
    // Methord to show the other VC For the AppDelegate to call
    func showStationDetail()->(){
        self.performSegueWithIdentifier("showInfoForStation",sender: self)
    }
这里的跳转动作和之前在storyBoard里面的segue的indentifier一样,是showInfoForStation


最后,在自定义的cell里面完成button的点击action函数就ok了

StationTableViewCell.swift

    @IBAction func buttonPressed(sender: AnyObject) {
        let appdelegate = UIApplication.sharedApplication().delegate as! AppDelegate
        appdelegate.projectDetail.showStationDetail()
    }

大佬总结

以上是大佬教程为你收集整理的Swift中利用AppDelegate实现调用指定ViewController中的函数全部内容,希望文章能够帮你解决Swift中利用AppDelegate实现调用指定ViewController中的函数所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: