Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
194 views
in Technique[技术] by (71.8m points)

ios - Issue with TableviewCell in swift

enter image description here

I have 2 sections both with 3 rows. Basically I want the section 0, row 0 to only have the image and label combo. all the other rows will only be containing text. It has a logout on the footer. how do I go about removing the repetitiveness, I know it's because im using the dequereuseable cell but I can't find a work around.

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    
    
        let cell = tableView.dequeueReusableCell(withIdentifier: "ImageCell", for: indexPath) as! ImageViewCell
        cell.textLabel?.font = UIFont(name: "Lato", size: 20.0)
        cell.contentView.layer.borderWidth = 0.05
        cell.layer.cornerRadius = 8
        cell.userFirstName.text = userFirstName
      
        return cell
}
question from:https://stackoverflow.com/questions/65646781/issue-with-tableviewcell-in-swift

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can prepare 2 different cells with 2 different layouts and different identifiers. Then dequeue proper one based on indexPath.section and indexPath.row values.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...