• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

SWIFTUITableView的基本用法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
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!
    }
    
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Swift静态方法发布时间:2022-07-13
下一篇:
SQLite.Swift中的一些用法发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap