0
0

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.

テスト投稿

Last updated at Posted at 2018-09-29

テスト投稿です。
Xcodeでコードを書いてる時に出てくる補完機能一覧の左にあるアイコンの意味がわからない。

スクリーンショット 2018-09-07 18.14.10.png

#「本気ではじめるiPhoneアプリ作り(Xcode9,Swift4)」のToDoアプリを今やっています。

https://www.sbcr.jp/products/4797394184.html

P247の④アラートダイアログの生成のコードで


 // アラートダイアログを生成
let alertContoroller = UIAlertController(title: "ToDoの追加", message: "ToDoを追加してください", preferredStyle: UIAlertControllerStyle.alert) 

だとエラーになる。

エラー内容
'UIAlertControllerStyle' has been renamed to 'UIAlertController.Style'Replace 'UIAlertControllerStyle' with 'UIAlertController.Style'

補完機能を使いFixすると
UIAlertController.Style.alert

Apple公式ドキュメントではUIAlertController.Style

UIAlertController.Style が正しいのではないのか。

現在の正誤情報には記載されていない。
https://www.sbcr.jp/support/14393.html

【環境】
Xcode: 10.0
Swift: 4.2

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?