前提・実現したいこと
swiftで図鑑のようなものを実装するなシステムを作り、それの詳細説明に画像を表示できるようにしたのですが、画像が変な位置に飛んでしまったりして困っています
ViewController
swift
1 2import UIKit 3 4struct AnimalInfo { 5 var name: String 6 var description: String 7 var imageName: String 8} 9 10class ViewController: UIViewController,UITableViewDataSource { 11 @IBOutlet weak var tableView: UITableView! 12 13 let items = [ 14 AnimalInfo(name: "ライオン", description: "百獣の王。一般的に最も強い動物として知られている。", imageName: "rion.jpg"), 15 AnimalInfo(name: "サイ", description: "頭部に硬い角を持っている。巨体に似合わず最高時速50kmで走る。", imageName: "rhino.jpg"), 16 AnimalInfo(name: "シマウマ", description: "白黒の縞模様を持つ動物。視覚や嗅覚、聴覚が優れている。", imageName: "zebra.jpg"), 17 AnimalInfo(name: "キリン", description: "最も背が高い動物。首が長いところが特徴。", imageName: "giraff.jpg"), 18 AnimalInfo(name: "ゾウ", description: "陸生生物では世界最大の動物。花は立っていても地面に届くほどに長い。", imageName: "elephant.jpg"), 19 ] 20 21 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 22 return items.count 23 } 24 25 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 26 let cell: UITableViewCell! = tableView.dequeueReusableCell(withIdentifier: "NameCell") 27 let item = items[indexPath.row] 28 cell.textLabel?.text = item.name 29 return cell 30 } 31 32 override func viewDidLoad() { 33 super.viewDidLoad() 34 // Do any additional setup after loading the view. 35 tableView.dataSource = self 36 } 37 38 override func prepare(for segue: UIStoryboardSegue, sender: Any?){ 39 if let selectedRow = tableView.indexPathForSelectedRow{ 40 let controller = segue.destination as! DetailViewController 41 controller.info = items[selectedRow.row] 42 } 43 } 44} 45
DetailViewController
swift
1i 2import UIKit 3 4class DetailViewController: UIViewController { 5 @IBOutlet weak var label: UILabel! 6 @IBOutlet weak var image: UIImageView! 7 8 var info: AnimalInfo! 9 10 override func viewDidLoad() { 11 super.viewDidLoad() 12 navigationItem.title = info.name 13 label.text = info.description 14 image.image = UIImage(named: info.imageName) 15 // Do any additional setup after loading the view. 16 } 17 18 19 /* 20 // MARK: - Navigation 21 22 // In a storyboard-based application, you will often want to do a little preparation before navigation 23 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 24 // Get the new view controller using segue.destination. 25 // Pass the selected object to the new view controller. 26 } 27 */ 28} 29
試したこと
正直、swiftを触りはじめたばかりで右も左もわからない状態の質問の為、どこをどうしたらいいかわかっていません。
調べればすぐに分かることだったりするかもしれませんがよろしくお願いします。
あなたの回答
tips
プレビュー