前提・実現したいこと
xCodeでswift言語を使用してiOSアプリを作成しています。
StoryBoard上にはなにも配置せず、ViewControllerのみを作成して、
中身はコードだけで実装したいです。
takabosoft様からご回答をいただき、コードは修正しエラーは解消しました。
が、セットしているつもりなのですが、テキストも画像も表示されません。
ご協力お願いいたします。
・作成したい各セルのイメージ
---------------
Name:〇〇 | 画像を表示
---------------
発生している問題・エラーメッセージ
何も表示されません。
該当のソースコード
CustomClass
1import UIKit 2 3class CustomTableViewCell: UITableViewCell { 4 5 var id = UILabel() 6 var icon = UIImageView() 7 8 override func awakeFromNib() { 9 super.awakeFromNib() 10 // Initialization code 11 } 12 13 override func setSelected(_ selected: Bool, animated: Bool) { 14 super.setSelected(selected, animated: animated) 15 16 // Configure the view for the selected state 17 } 18 19 func setCell(idList: IDList) { 20 self.id.text = idList.id 21 self.icon.image = UIImage(named: idList.imgName) 22 } 23}
import Foundation // ID選択画面用モデル class IDList : NSObject { var id : String! var imgName : String! init(sId: String, imgName: String!){ self.id = sId self.imgName = imgName } }
ViewController
1※抜粋 2 var testData:[IDList] = [IDList]() 3 4 override func viewDidLoad() { 5 super.viewDidLoad() 6 7 // 画面サイズを取得する 8 let iWidthScreen = self.view.frame.size.width 9 let iHeightScreen = self.view.frame.size.height 10 11 // タイトル 12 let lblTitle = UILabel() 13 lblTitle.frame = CGRect(x: 0, y: 45, width: iWidthScreen, height: 20) 14 lblTitle.text = "タイトル" 15 lblTitle.textAlignment = NSTextAlignment.center 16 self.view.addSubview(lblTitle) 17 18 // ID一覧 19 let tableView = UITableView() 20 tableView.frame = CGRect(x: 5, y: iHeightScreen * 0.15, width: iWidthScreen - 10, height: iHeightScreen * 0.7) 21 tableView.delegate = self 22 tableView.dataSource = self 23 self.view.addSubview(tableView) 24 25 // 完了ボタン 26 let btnConplete = UIButton() 27 btnConplete.frame = CGRect(x: iWidthScreen * 0.1, y: iHeightScreen * 0.9, width: iWidthScreen * 0.8, height: 50) 28 btnConplete.setTitle("ボタン1") 29 btnConplete.layer.cornerRadius = 12 30 btnConplete.addTarget(self, action: #selector(btnNext_touched), for: .touchUpInside) 31 self.view.addSubview(btnConplete) 32 } 33 34 // TableView表示個数 35 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 36 return testData.count 37 } 38 39 // セルに値をセット 40 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 41 let cell:CustomTableViewCell = tableView.dequeueReusableCell(withIdentifier: "CustomTableViewCell", for: indexPath) as! CustomTableViewCell 42 cell.id.frame = CGRect(x:0, y:0, width: 150, height:30) 43 cell.id.text = testData[indexPath.row].id 44 cell.imgName.image = UIImage(named: testData[indexPath.row].imgName 45 return cell 46 }
補足情報(FW/ツールのバージョンなど)
・Mac
・xCode 10.1
・swift 3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/22 07:09
2019/11/22 07:40
2019/11/22 08:35
2019/11/22 08:38
2019/11/22 08:40
2019/11/22 08:45 編集
2019/11/22 08:46 編集