LoginSignup
10
4

More than 3 years have passed since last update.

UIAlertController(ActionSheet)のタイトルの枠を削除する

Posted at

日本語の記事がなかったので、書いておきます。

困っている内容

タイトルとサブタイトルの枠が残ってしまう。
image.png

実装したいもの

タイトルの枠を削除する
image.png

実装方法

titleとmessageをnilにする

ViewController.swift
let alertController:UIAlertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) 

参考ソース

10
4
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
10
4