8.11 TableView

实现cell显示不同的内容

import UIKit
import SwiftyJSON
import Kingfisher

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

    var newsJson: JSON?

    override func viewDidLoad() {
        super.viewDidLoad()

        loadData()

        createViews()

    }

    func createViews() {

        let tableView = UITableView(frame: self.view.bounds, style: .Plain)

        self.view.addSubview(tableView)

        

        tableView.registerClass(CustomTableViewCell.self, forCellReuseIdentifier:"cell1")

        tableView.registerClass(SecondTableViewCell.self, forCellReuseIdentifier:"cell2")

        tableView.registerClass(ThirdTableViewCell.self, forCellReuseIdentifier:"cell3")

        

        tableView.dataSource = self

        tableView.delegate = self

    }

    

    func loadData() {

        let path = NSBundle.mainBundle().pathForResource("data", ofType: "json")

        let data = NSData(contentsOfFile: path!)

        newsJson = JSON(data: data!)

//        

//        if newsJson![0]["images"] == nil {

//            print("nil")

//        }

//        else {

//            print("no nil")

//        }

    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{

        return newsJson!.count

    }

    

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath:NSIndexPath) -> UITableViewCell {

        

//寻找三个类里面不同的地方,第一个是一张图,第二个很多图,第三个有decs

        let json = newsJson![indexPath.row]

        if json["image"] != nil {

            let cell = tableView.dequeueReusableCellWithIdentifier("cell1", forIndexPath: indexPath) as! CustomTableViewCell

//            cell.coverImageView.kf_setImageWithURL(NSURL(string: json["image"].string!))

            cell.showInfo(json)

            return cell

        }

        else if json["images"] != nil {

            let cell = tableView.dequeueReusableCellWithIdentifier("cell2", forIndexPath: indexPath) as! SecondTableViewCell

            return cell

        }

        else {

            let cell = tableView.dequeueReusableCellWithIdentifier("cell3", forIndexPath: indexPath) as! ThirdTableViewCell

            return cell

        }

        

#if false

        //求余(求模, mode)

        if indexPath.row % 2 == 0 {

            //1. 获取可以重用的Cell对象

            //2. 根据重用标识创建Cell

            let cell = tableView.dequeueReusableCellWithIdentifier("cell2", forIndexPath: indexPath) as! SecondTableViewCell

            

            cell.rightImageView.image = UIImage(named: "1.jpg")

            

            return cell

        }

        else {

            //1. 获取可以重用的Cell对象

            //2. 根据重用标识创建Cell

            let cell = tableView.dequeueReusableCellWithIdentifier("cell1", forIndexPath: indexPath) as! CustomTableViewCell

            

            cell.coverImageView.image = UIImage(named: "1.jpg")

            

            return cell

        }

#endif

    }

    

    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath:NSIndexPath) -> CGFloat {

        return 80

    }

    

    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath:NSIndexPath) {

//        let json = newsJson![indexPath.row]

//        let cell = tableView.cellForRowAtIndexPath(indexPath)

    }

}

创建的第一个类

import UIKit
import SwiftyJSON
import Kingfisher

class CustomTableViewCell: UITableViewCell {

    var coverImageView: UIImageView!
    var model: JSON?

    //创建Cell时,无法获取Cell的尺寸

    override init(style: UITableViewCellStyle, reuseIdentifier: String?) {

        //先调用父类中的init方法

        super.init(style: style, reuseIdentifier: reuseIdentifier)

        

        coverImageView = UIImageView(frame: CGRect(x: 10, y: 10, width: 50, height:60))

        self.contentView.addSubview(coverImageView)

    }

    

    //所有UIView的子类,必须实现。用于Storyboard中加载该控件时

    required init?(coder aDecoder: NSCoder) {

        //直接让程序崩溃

        fatalError("init(coder:) has not been implemented. ")

    }

    func showInfo(model: JSON) {

        self.model = model

        coverImageView.kf_setImageWithURL(NSURL(string: model["image"].string!))

    }

}

创建的第二个类

import UIKit

class SecondTableViewCell: UITableViewCell {

    var rightImageView: UIImageView!

    override init(style: UITableViewCellStyle, reuseIdentifier: String?) {

        super.init(style: style, reuseIdentifier: reuseIdentifier)

        //不合适,Cell不一定充满整个屏幕,应该用自动布局

//        let screenWidth = UIScreen.mainScreen().bounds.size.width

        rightImageView = UIImageView()

        self.contentView.addSubview(rightImageView)

    }

    required init?(coder aDecoder: NSCoder) {

        fatalError("init(coder:) has not been implemented")

    }

    //重点

    //当View本身显示或者位置、大小发生改变时,自动调用

    //时机:应该计算子视图的位置和大小

    override func layoutSubviews() {

        //如果不是想替换父类中方法的功能,而只是增加功能,应该使用super调用父类的方法

        super.layoutSubviews()
   

        //self的位置和尺寸一定已经确定了

        rightImageView.frame = CGRectMake(self.frame.size.width - 50 - 10, 10, 50, 60)

    }

}

创建的第三个类

import UIKit

class ThirdTableViewCell: UITableViewCell {

    override func awakeFromNib() {

        super.awakeFromNib()

        // Initialization code

    }

    override func setSelected(selected: Bool, animated: Bool) {

        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state

    }

}

JSON数据

[

 {

    "title":"太原3.1级地震",

    "date":"今天 19:36",

   "image":"http://hbimg.b0.upaiyun.com/bdb56d4ab6cfd271cce1ed5b7a061107f8d7e64f11bd4-GQdkR4_fw658"

 },

 {

    "title":"4名大学生花4k装修文艺宿舍",

    "date":"今天 19:14",

    "images":[

        "http://hbimg.b0.upaiyun.com/fe97ed0e06db1e3159423bc54e1dda27536f0efe62d24-lCissl_fw658",

        "http://hbimg.b0.upaiyun.com/39475d88b745e98d2401d8809389263f64872f2d21164-1kg2YR_fw658",

        "http://hbimg.b0.upaiyun.com/409d16281c8057b286a2dd3d6e95a6bf4cb77e9e5c19b-o42VRv_fw658"

    ]

 },

 {

    "title":"工商总局局长接受凤凰专访 首谈商事制度改革之困",

    "date":"今天 19:04",

    "desc":"国家工商总局局长张茅日前在接受凤凰卫视《问答神州》栏目专访时,直面吴小莉就商事制度改革之问——“改革阻力和难度在哪里?”"

 }

]
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,089评论 4 62
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • 最大的印象就是被野狗追,然后用木棍丢去打它,好像是回到一个有点像以前还没有修河堤的王家镇,让很多路啊河流啊都跟我小...
    向上的潘达阅读 179评论 0 0
  • 目录 上一章 中考失利 第二章 忆起伤心的往事 路峰平时很少过问路一鸣在校的学习生活,他仅仅在乎儿子路一鸣每次的考...
    青梅梦语阅读 406评论 1 7
  • 过年期间我和爸爸妈妈一起去见了他们好久不见的老朋友。 一路上,爸妈说着他们的回忆。阿姨有先天性的心脏病,叔...
    闲杂人儿L阅读 1,070评论 0 0