0
import UIKit
class FishTableViewController: UITableViewController {
//MARK: Properties
var fish = [Fish]()
override func viewDidLoad() {
super.viewDidLoad()
//load fish example cell
loadSampleFish();
}
func loadSampleFish(){
let grouperPhoto = UIImage(named: "blackgrouper");
let exampleFish = Fish(name: "Black Grouper", photo: grouperPhoto);
fish += [exampleFish];
}
「VAR魚=魚」と「exampleFish =魚ましょう(名称: 『上
未解決識別子黒ハタ』、写真:grouperPhotoを);」未解決識別子
つまり、Xcodeは「Fish」が何であるかを知りません。 – penatheboss