のテーブルビューを取得し、私は次のファイルをストーリーボードに 輸入のUIKitのViewController
class jokesviewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
@IBOutlet var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
return UITableViewCell()
}
} と私はそのオブジェクトを作ることによって、このコントローラを使用する別のコントローラ、(うまくこのJSQmessagesControllerをViewControllerをを持っています私はjokesviewControllerクラスのオブジェクトを作成するクラス) と私が使用するコードがある
var jokeviewController :jokesviewController?
//クラスbegnning でどこか一部の機能では
jokeviewController = jokesviewController()
self.view.addSubview(jokeviewController!.view)
jokeviewController!.view.backgroundColor = UIColor.grayColor()
私はjokeviewController!を使用することになっています!.view私は使用するビューを与えるが、私はjokeviewControllerを取得しようとすると!.tableviewは、私はゼロの値を得たと言う。 私は両方の方法で、コントローラ内のコンテナビューなしでtableviewをビューとテーブルビューに入れてみました。 推測してください
ありがとう、私の悪い初心者は間違います。 –
問題ありません、ハッピーコーディング – Miknash