zoukankan      html  css  js  c++  java
  • SWIFT UITableView的基本用法

    import UIKit
    
    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate {
    
        var window: UIWindow?
    
    
        func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
            self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
            // Override point for customization after application launch.
            self.window!.backgroundColor = UIColor.whiteColor()
            
            let navigation = UINavigationController(rootViewController: RootViewController())
            self.window?.rootViewController = navigation
            
            self.window!.makeKeyAndVisible()
            return true
        }
    
    }
    import UIKit
    
    class RootViewController: UIViewController {
    
        override func loadView() {
            super.loadView()
            //初始化UITableView
            let tableView = UITableView()
            tableView.frame = UIScreen.mainScreen().bounds
            tableView.dataSource = self
            tableView.delegate = self
            self.view.addSubview(tableView)
        }
        //懒加载数据
        lazy var datas:[String] = {
            return ["是雨是泪","分分钟需要你","伤心太平洋","曾经最痛","飘雪"]
        }()
        
        override func viewDidLoad() {
            super.viewDidLoad()
            self.title = "UITableView的基本用法"
        }
    }
    
    extension RootViewController:UITableViewDelegate,UITableViewDataSource
    {
        //区的个数
        func numberOfSectionsInTableView(tableView: UITableView) -> Int {
            return 1
        }
        //在相应区中cell的个数
        func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            return datas.count
        }
        // cell的高度
        func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
            return 60
        }
        
        func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
            //在重用机制里取出cell
            var cell = tableView.dequeueReusableCellWithIdentifier("cell")
            //如果cell为空则创建
            if cell == nil {
                cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "cell")
            }
            //设置数据
            cell?.textLabel?.text = datas[indexPath.row]
            return cell!
        }
        
    }
  • 相关阅读:
    UVA 10564
    ARM GCC CodeSourcery 下载地址
    Linux Shell编程入门
    设计模式------Adapter(适配器)
    设计模式------STRATEGY(策略模式)
    对象创建型模式------Singleton(单例模式)
    设计模式------PROTOTYPE(原型),TEMPLATE(模板)
    对象创建型模式------Builder(生成器或建造者模式)(2)
    对象创建型模式------工厂模式
    effective c++(07)之为多态基类声明virtual析构函数
  • 原文地址:https://www.cnblogs.com/lantu1989/p/5208296.html
Copyright © 2011-2022 走看看