2016-08-20 77 views
2

當我在Xcode中運行我的應用程序,我的形象的看法和按鈕不會出現在模擬。他們出現在故事​​板中,但是,他們沒有出現在模擬中。我的按鈕和圖像視圖有圖像,它們是png文件。我還沒有在應用程序中放入任何嚴肅的代碼,因爲我想確保圖像視圖和按鈕出現(可惜他們沒有出現:()。我唯一的代碼是IBOutlets的圖像視圖和IBActions (其中有內部還沒有任何代碼非)的按鈕。我目前正在運行的Xcode 7.3.1和新來的迅速語言。圖像視圖和按鈕沒有出現在模擬器

Storyboard

//下面是從視圖控制器代碼

import UIKit 

class ViewController: UIViewController { 

    @IBOutlet weak var SlotRectangle1: UIImageView! 

    @IBOutlet weak var SlotRectangle2: UIImageView! 

    @IBOutlet weak var SlotRectangle3: UIImageView! 



    override func viewDidLoad() { 
     super.viewDidLoad() 

    } 

    override func didReceiveMemoryWarning() { 
     super.didReceiveMemoryWarning() 
     // Dispose of any resources that can be recreated. 
    } 

    @IBAction func SlotButton1() { 
    } 

    @IBAction func SlotButton2() { 
    } 

    @IBAction func SlotButton3() { 
    } 
} 
+0

您根據情節串連圖板...什麼崩潰是它得到一個崩潰? – penatheboss

回答

0

從錯誤信息,它看起來像你要麼沒有正確添加圖像資源,或者沒有添加他們。

退房答案在這裏:Adding Images iOS xCode

+0

非常感謝! –