入门代码,Swift表格,标签控制器

这里写图片描述
这里写图片描述
这里写图片描述

import UIKit
import CoreData

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
  //窗口对象
    var window: UIWindow?
   //标签栏控制器
    var tabCtl:UITabBarController = UITabBarController.init()


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        // Override point for customization after application launch.

        //控制器对象
        let stuVC:StudentViewController = StudentViewController()
        stuVC.navigationItem.title = "��"
        stuVC.view.backgroundColor = .white
        let stuNAV:UINavigationController = UINavigationController.init(rootViewController: stuVC)

        let uiVC:MyUIViewController = MyUIViewController()
        uiVC.navigationItem.title = "��"
        uiVC.view.backgroundColor = UIColor.orange
        let uiNav = UINavigationController(rootViewController: uiVC)

        let newsVC:NewsViewController = NewsViewController()
        newsVC.navigationItem.title = "��"
        newsVC.view.backgroundColor = UIColor.yellow
        let newsNav = UINavigationController(rootViewController: newsVC)

        self.tabCtl.viewControllers = [stuNAV,uiNav,newsNav]

        //给各个导航添加标签栏标签
        stuNAV.tabBarItem = UITabBarItem.init(title: "��", image:UIImage.init(named:"12.png"), tag: 100)
        uiNav.tabBarItem = UITabBarItem.init(tabBarSystemItem: UITabBarSystemItem.contacts, tag: 101)

        newsNav.tabBarItem = UITabBarItem.init(tabBarSystemItem: UITabBarSystemItem.bookmarks, tag: 102)

        self.window?.rootViewController = self.tabCtl


        return true
    }

    func applicationWillResignActive(_ application: UIApplication) {
        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
        // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    }

    func applicationDidEnterBackground(_ application: UIApplication) {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }

    func applicationWillEnterForeground(_ application: UIApplication) {
        // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
    }

    func applicationDidBecomeActive(_ application: UIApplication) {
        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }

    func applicationWillTerminate(_ application: UIApplication) {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
        // Saves changes in the application's managed object context before the application terminates.
        self.saveContext()
    }

    // MARK: - Core Data stack

    lazy var persistentContainer: NSPersistentContainer = {
        /*
         The persistent container for the application. This implementation
         creates and returns a container, having loaded the store for the
         application to it. This property is optional since there are legitimate
         error conditions that could cause the creation of the store to fail.
        */
        let container = NSPersistentContainer(name: "SwiftUIDemon")
        container.loadPersistentStores(completionHandler: { (storeDescription, error) in
            if let error = error as NSError? {
                // Replace this implementation with code to handle the error appropriately.
                // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.

                /*
                 Typical reasons for an error here include:
                 * The parent directory does not exist, cannot be created, or disallows writing.
                 * The persistent store is not accessible, due to permissions or data protection when the device is locked.
                 * The device is out of space.
                 * The store could not be migrated to the current model version.
                 Check the error message to determine what the actual problem was.
                 */
                fatalError("Unresolved error \(error), \(error.userInfo)")
            }
        })
        return container
    }()

    // MARK: - Core Data Saving support

    func saveContext () {
        let context = persistentContainer.viewContext
        if context.hasChanges {
            do {
                try context.save()
            } catch {
                // Replace this implementation with code to handle the error appropriately.
                // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
                let nserror = error as NSError
                fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
            }
        }
    }

}

这里写图片描述
这里写图片描述

//
//  StudentViewController.swift
//  SwiftUIDemon
//
//  Created by XXX on 2017/10/24.
//  Copyright © 2017年 xxx. All rights reserved.
//

import UIKit
                                                                //协议
class StudentViewController: UIViewController,UITableViewDataSource {

    var studentsData:[String]?


    override func viewDidLoad() {
        super.viewDidLoad()
        //初始化
        studentsData = ["��","��","��","��","��","��","��","��"]
        let table:UITableView = UITableView.init(frame: self.view.frame, style:.plain)
        table.dataSource = self
        self.view.addSubview(table)

        // Do any additional setup after loading the view.
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
       //可选绑定
        if let count  = self.studentsData?.count{
            return count
        }
        return 0
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let str = "identifier"
        var cell = tableView.dequeueReusableCell(withIdentifier: str)

        if  cell == nil {
            cell = UITableViewCell.init(style: .default, reuseIdentifier: str)
        }
        cell?.textLabel?.text = self.studentsData?[indexPath.row]

        return cell!

   }



    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        // Get the new view controller using segue.destinationViewController.
        // Pass the selected object to the new view controller.
    }
    */

}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值