这是我使用storyboard创建UITableView的代码,我更新了我的ViewController.swift文件。它在我在模拟器中运行时工作正常,但我在我的设备中运行它时遇到错误
ViewController.swift
import UIKit
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
@IBOutlet weak var tableViewObject: UITableView!
var foodNames: [String] = ["Food1","Food2","Food3","Food4","Food5","Food6","Food7","Food8"];
var foodImages: [String] = ["image1", "image2", "image3","image4","image5","image6","image7","image8"];
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return foodNames.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell:UITableViewCell=UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "mycell")
cell.textLabel.text = foodNames[indexPath.row]
var image : UIImage = UIImage(named: foodImages[indexPath.row])!
cell.imageView.image = image
cell.imageView.sizeToFit()
return cell
}
override func viewDidLoad()
{
super.viewDidLoad()
}
}
我正面临如下所示的错误
答案 0 :(得分:0)
从你的边缘:dylib library not loaded libSwiftCore.
这意味着您遇到了Frameworks(动态库)的问题。
请检查以下SO link
我想你会发现你的情况。 希望这会有所帮助。