尝试使用swift / xcode将按钮链接到视图控制器时,我遇到了一些问题。
我跟随的教程告诉我控制点击并拖动到视图控制器(看起来如下)
//
// ButtonViewController.swift
// Relocate
//
// Created by on 28/07/2015.
// Copyright (c) 2015 com.ricki.relocate. All rights reserved.
//
import UIKit
import CoreLocation
class ButtonViewController : UIViewController
{
override func viewDidLoad() {
super.viewDidLoad()
}
}
显然我应该出现一些选项来制作插座,但编辑器不允许我将它放在视图控制器文件中。
我缺少一项先决条件吗?
由于
答案 0 :(得分:0)
在故事板中,查看按钮视图控制器的Identity Inspector
选项卡。确保在ButtonViewController
字段中显示Class
。