12
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Class `ViewController ` has no initializer

Posted at

Swift で書いてたらこんなこと言われたのでメモ書き

現象

こんな感じのコード

import UIKit

class ViewController: UIViewController {
	var test:MyTestKls

	...
}

この場合、一行目から Class ViewController has no initializer と言われる。

原因と対処

プロパティの初期値を設定していない為、 initializer で初期化しろ、という文句。

こんな感じにすればいいぽい。よくわかってない。

import UIKit

class ViewController: UIViewController {
	var test:MyTestKls? = nil

	...
}
12
14
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?